forked from Kinnara/ModernWpf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRatingControl.properties.cs
202 lines (156 loc) · 6.43 KB
/
RatingControl.properties.cs
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.
using System.Windows;
using ModernWpf.Controls.Primitives;
namespace ModernWpf.Controls
{
partial class RatingControl
{
#region Caption
public static readonly DependencyProperty CaptionProperty =
DependencyProperty.Register(
nameof(Caption),
typeof(string),
typeof(RatingControl),
new PropertyMetadata(string.Empty, OnCaptionPropertyChanged));
public string Caption
{
get => (string)GetValue(CaptionProperty);
set => SetValue(CaptionProperty, value);
}
private static void OnCaptionPropertyChanged(DependencyObject sender, DependencyPropertyChangedEventArgs args)
{
((RatingControl)sender).PrivateOnPropertyChanged(args);
}
#endregion
#region InitialSetValue
public static readonly DependencyProperty InitialSetValueProperty =
DependencyProperty.Register(
nameof(InitialSetValue),
typeof(int),
typeof(RatingControl),
new PropertyMetadata(1, OnInitialSetValuePropertyChanged));
public int InitialSetValue
{
get => (int)GetValue(InitialSetValueProperty);
set => SetValue(InitialSetValueProperty, value);
}
private static void OnInitialSetValuePropertyChanged(DependencyObject sender, DependencyPropertyChangedEventArgs args)
{
((RatingControl)sender).PrivateOnPropertyChanged(args);
}
#endregion
#region IsClearEnabled
public static readonly DependencyProperty IsClearEnabledProperty =
DependencyProperty.Register(
nameof(IsClearEnabled),
typeof(bool),
typeof(RatingControl),
new PropertyMetadata(true, OnIsClearEnabledPropertyChanged));
public bool IsClearEnabled
{
get => (bool)GetValue(IsClearEnabledProperty);
set => SetValue(IsClearEnabledProperty, value);
}
private static void OnIsClearEnabledPropertyChanged(DependencyObject sender, DependencyPropertyChangedEventArgs args)
{
((RatingControl)sender).PrivateOnPropertyChanged(args);
}
#endregion
#region IsReadOnly
public static readonly DependencyProperty IsReadOnlyProperty =
DependencyProperty.Register(
nameof(IsReadOnly),
typeof(bool),
typeof(RatingControl),
new PropertyMetadata(false, OnIsReadOnlyPropertyChanged));
public bool IsReadOnly
{
get => (bool)GetValue(IsReadOnlyProperty);
set => SetValue(IsReadOnlyProperty, value);
}
private static void OnIsReadOnlyPropertyChanged(DependencyObject sender, DependencyPropertyChangedEventArgs args)
{
((RatingControl)sender).PrivateOnPropertyChanged(args);
}
#endregion
#region ItemInfo
public static readonly DependencyProperty ItemInfoProperty =
DependencyProperty.Register(
nameof(ItemInfo),
typeof(RatingItemInfo),
typeof(RatingControl),
new PropertyMetadata(OnItemInfoPropertyChanged));
public RatingItemInfo ItemInfo
{
get => (RatingItemInfo)GetValue(ItemInfoProperty);
set => SetValue(ItemInfoProperty, value);
}
private static void OnItemInfoPropertyChanged(DependencyObject sender, DependencyPropertyChangedEventArgs args)
{
((RatingControl)sender).PrivateOnPropertyChanged(args);
}
#endregion
#region MaxRating
public static readonly DependencyProperty MaxRatingProperty =
DependencyProperty.Register(
nameof(MaxRating),
typeof(int),
typeof(RatingControl),
new PropertyMetadata(5, OnMaxRatingPropertyChanged));
public int MaxRating
{
get => (int)GetValue(MaxRatingProperty);
set => SetValue(MaxRatingProperty, value);
}
private static void OnMaxRatingPropertyChanged(DependencyObject sender, DependencyPropertyChangedEventArgs args)
{
((RatingControl)sender).PrivateOnPropertyChanged(args);
}
#endregion
#region PlaceholderValue
public static readonly DependencyProperty PlaceholderValueProperty =
DependencyProperty.Register(
nameof(PlaceholderValue),
typeof(double),
typeof(RatingControl),
new PropertyMetadata(-1d, OnPlaceholderValuePropertyChanged));
public double PlaceholderValue
{
get => (double)GetValue(PlaceholderValueProperty);
set => SetValue(PlaceholderValueProperty, value);
}
private static void OnPlaceholderValuePropertyChanged(DependencyObject sender, DependencyPropertyChangedEventArgs args)
{
((RatingControl)sender).PrivateOnPropertyChanged(args);
}
#endregion
#region Value
public static readonly DependencyProperty ValueProperty =
DependencyProperty.Register(
nameof(Value),
typeof(double),
typeof(RatingControl),
new PropertyMetadata(-1d, OnValuePropertyChanged));
public double Value
{
get => (double)GetValue(ValueProperty);
set => SetValue(ValueProperty, value);
}
private static void OnValuePropertyChanged(DependencyObject sender, DependencyPropertyChangedEventArgs args)
{
((RatingControl)sender).PrivateOnPropertyChanged(args);
}
#endregion
#region UseSystemFocusVisuals
public static readonly DependencyProperty UseSystemFocusVisualsProperty =
FocusVisualHelper.UseSystemFocusVisualsProperty.AddOwner(typeof(RatingControl));
public bool UseSystemFocusVisuals
{
get => (bool)GetValue(UseSystemFocusVisualsProperty);
set => SetValue(UseSystemFocusVisualsProperty, value);
}
#endregion
public event TypedEventHandler<RatingControl, object> ValueChanged;
}
}