File tree Expand file tree Collapse file tree 2 files changed +25
-11
lines changed Expand file tree Collapse file tree 2 files changed +25
-11
lines changed Original file line number Diff line number Diff line change
1
+ using System ;
2
+ using System . Collections . Generic ;
3
+ using System . Linq ;
4
+ using System . Text ;
5
+ using System . Threading . Tasks ;
6
+ using System . Windows . Controls ;
7
+
8
+ namespace MaterialDesignThemes . Wpf
9
+ {
10
+ /// <summary>
11
+ /// This interface is the adapter from UiControl (like <see cref="TextBox"/>, <see cref="ComboBox"/> and others) to <see cref="SmartHint"/>
12
+ /// <para/>
13
+ /// You should implement this interface in order to use SmartHint for your own control.
14
+ /// </summary>
15
+ public interface IHintProxy : IDisposable
16
+ {
17
+ string Text { get ; }
18
+ bool IsLoaded { get ; }
19
+ bool IsVisible { get ; }
20
+
21
+ event EventHandler TextChanged ;
22
+ event EventHandler IsVisibleChanged ;
23
+ event EventHandler Loaded ;
24
+ }
25
+ }
Original file line number Diff line number Diff line change @@ -165,15 +165,4 @@ private void RefreshState(bool useTransitions)
165
165
} ) ) ;
166
166
}
167
167
}
168
-
169
- public interface IHintProxy : IDisposable
170
- {
171
- string Text { get ; }
172
- bool IsLoaded { get ; }
173
- bool IsVisible { get ; }
174
-
175
- event EventHandler TextChanged ;
176
- event EventHandler IsVisibleChanged ;
177
- event EventHandler Loaded ;
178
- }
179
168
}
You can’t perform that action at this time.
0 commit comments