Skip to content

Commit b67e3ce

Browse files
committed
Update automation peer to hide base members
1 parent dcc8cfc commit b67e3ce

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Microsoft.Toolkit.Uwp.UI.Controls/RadialGauge/RadialGaugeAutomationPeer.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)