blob: 878389c9996296ff62dec87b5c3488859f2542a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Controls;
namespace MaterialDesignThemes.Wpf
{
/// <summary>
/// This interface is the adapter from UiControl (like <see cref="TextBox"/>, <see cref="ComboBox"/> and others) to <see cref="SmartHint"/>
/// <para/>
/// You should implement this interface in order to use SmartHint for your own control.
/// </summary>
public interface IHintProxy : IDisposable
{
/// <summary>
/// Checks to see if the targetted control can be deemed as logically
/// empty, even if not null, affecting the current hint display.
/// </summary>
/// <returns></returns>
bool IsEmpty();
/// <summary>
/// Targeted control has keyboard focus
/// </summary>
/// <returns></returns>
bool IsFocused();
[Obsolete]
object Content { get; }
bool IsLoaded { get; }
bool IsVisible { get; }
event EventHandler ContentChanged;
event EventHandler IsVisibleChanged;
event EventHandler Loaded;
event EventHandler FocusedChanged;
}
}
|