File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
Microsoft.Toolkit.Uwp.UI.Controls/RadialGauge Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -27,25 +27,25 @@ public RadialGaugeAutomationPeer(RadialGauge owner)
2727 }
2828
2929 /// <inheritdoc/>
30- public bool IsReadOnly => ! ( ( RadialGauge ) Owner ) . IsInteractive ;
30+ public new bool IsReadOnly => ! ( ( RadialGauge ) Owner ) . IsInteractive ;
3131
3232 /// <inheritdoc/>
33- public double LargeChange => ( ( RadialGauge ) Owner ) . StepSize ;
33+ public new double LargeChange => ( ( RadialGauge ) Owner ) . StepSize ;
3434
3535 /// <inheritdoc/>
36- public double Maximum => ( ( RadialGauge ) Owner ) . Maximum ;
36+ public new double Maximum => ( ( RadialGauge ) Owner ) . Maximum ;
3737
3838 /// <inheritdoc/>
39- public double Minimum => ( ( RadialGauge ) Owner ) . Minimum ;
39+ public new double Minimum => ( ( RadialGauge ) Owner ) . Minimum ;
4040
4141 /// <inheritdoc/>
42- public double SmallChange => ( ( RadialGauge ) Owner ) . StepSize ;
42+ public new double SmallChange => ( ( RadialGauge ) Owner ) . StepSize ;
4343
4444 /// <inheritdoc/>
45- public double Value => ( ( RadialGauge ) Owner ) . Value ;
45+ public new double Value => ( ( RadialGauge ) Owner ) . Value ;
4646
4747 /// <inheritdoc/>
48- public void SetValue ( double value )
48+ public new void SetValue ( double value )
4949 {
5050 ( ( RadialGauge ) Owner ) . Value = value ;
5151 }
You can’t perform that action at this time.
0 commit comments