File tree Expand file tree Collapse file tree 1 file changed +19
-1
lines changed Expand file tree Collapse file tree 1 file changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -140,7 +140,25 @@ public double RippleY
140
140
{
141
141
get { return ( double ) GetValue ( RippleYProperty ) ; }
142
142
private set { SetValue ( RippleYPropertyKey , value ) ; }
143
- }
143
+ }
144
+
145
+ /// <summary>
146
+ /// The DependencyProperty for the RecognizesAccessKey property.
147
+ /// Default Value: false
148
+ /// </summary>
149
+ public static readonly DependencyProperty RecognizesAccessKeyProperty =
150
+ DependencyProperty . Register (
151
+ "RecognizesAccessKey" , typeof ( bool ) , typeof ( Ripple ) ,
152
+ new PropertyMetadata ( default ( bool ) ) ) ;
153
+
154
+ /// <summary>
155
+ /// Determine if Ripple should use AccessText in its style
156
+ /// </summary>
157
+ public bool RecognizesAccessKey
158
+ {
159
+ get { return ( bool ) GetValue ( RecognizesAccessKeyProperty ) ; }
160
+ set { SetValue ( RecognizesAccessKeyProperty , value ) ; }
161
+ }
144
162
145
163
public override void OnApplyTemplate ( )
146
164
{
You can’t perform that action at this time.
0 commit comments