We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 613ab33 commit 87f22a5Copy full SHA for 87f22a5
1 file changed
ICSharpCode.AvalonEdit.Sample/Window1.xaml.cs
@@ -29,6 +29,7 @@
29
using ICSharpCode.AvalonEdit.CodeCompletion;
30
using ICSharpCode.AvalonEdit.Folding;
31
using ICSharpCode.AvalonEdit.Highlighting;
32
+using ICSharpCode.AvalonEdit.Search;
33
using Microsoft.Win32;
34
35
namespace ICSharpCode.AvalonEdit.Sample
@@ -68,6 +69,7 @@ public Window1()
68
69
70
textEditor.TextArea.TextEntering += textEditor_TextArea_TextEntering;
71
textEditor.TextArea.TextEntered += textEditor_TextArea_TextEntered;
72
+ SearchPanel.Install(textEditor);
73
74
DispatcherTimer foldingUpdateTimer = new DispatcherTimer();
75
foldingUpdateTimer.Interval = TimeSpan.FromSeconds(2);
0 commit comments