-
Notifications
You must be signed in to change notification settings - Fork 706
/
Copy pathProgressRing.idl
79 lines (62 loc) · 2.17 KB
/
ProgressRing.idl
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
namespace MU_XC_NAMESPACE
{
[MUX_PUBLIC]
[webhosthidden]
[MUX_PROPERTY_NEEDS_DP_FIELD]
runtimeclass ProgressRingTemplateSettings : Windows.UI.Xaml.DependencyObject
{
// TemplateSetting properties from WUXC for backwards compatibility.
Double EllipseDiameter{ get; };
Windows.UI.Xaml.Thickness EllipseOffset{ get; };
Double MaxSideLength{ get; };
}
[MUX_PUBLIC]
[webhosthidden]
unsealed runtimeclass ProgressRing : Windows.UI.Xaml.Controls.Control
{
ProgressRing();
[MUX_PROPERTY_CHANGED_CALLBACK(TRUE)]
[MUX_DEFAULT_VALUE("true")]
Boolean IsActive{ get; set; };
[MUX_PROPERTY_CHANGED_CALLBACK(TRUE)]
[MUX_DEFAULT_VALUE("true")]
Boolean IsIndeterminate{ get; set; };
[MUX_PREVIEW]
{
[MUX_PROPERTY_CHANGED_CALLBACK(TRUE)]
IAnimatedVisualSource DeterminateSource{ get; set; };
[MUX_PROPERTY_CHANGED_CALLBACK(TRUE)]
IAnimatedVisualSource IndeterminateSource{ get; set; };
}
[MUX_PROPERTY_NEEDS_DP_FIELD]
ProgressRingTemplateSettings TemplateSettings{ get; };
static Windows.UI.Xaml.DependencyProperty IsActiveProperty{ get; };
static Windows.UI.Xaml.DependencyProperty IsIndeterminateProperty{ get; };
[MUX_PREVIEW]
{
static Windows.UI.Xaml.DependencyProperty DeterminateSourceProperty{ get; };
static Windows.UI.Xaml.DependencyProperty IndeterminateSourceProperty{ get; };
}
[MUX_PROPERTY_CHANGED_CALLBACK(TRUE)]
[MUX_DEFAULT_VALUE("0.0")]
Double Value;
[MUX_PROPERTY_CHANGED_CALLBACK(TRUE)]
[MUX_DEFAULT_VALUE("0.0")]
Double Minimum;
[MUX_PROPERTY_CHANGED_CALLBACK(TRUE)]
[MUX_DEFAULT_VALUE("100.0")]
Double Maximum;
static Windows.UI.Xaml.DependencyProperty ValueProperty{ get; };
static Windows.UI.Xaml.DependencyProperty MinimumProperty{ get; };
static Windows.UI.Xaml.DependencyProperty MaximumProperty{ get; };
}
}
namespace MU_XAP_NAMESPACE
{
[MUX_PUBLIC]
[webhosthidden]
unsealed runtimeclass ProgressRingAutomationPeer : Windows.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer, Windows.UI.Xaml.Automation.Provider.IRangeValueProvider
{
ProgressRingAutomationPeer(MU_XC_NAMESPACE.ProgressRing owner);
}
}