ColorPicker.MaxValue 属性

定义

获取或设置 0-100 范围内的最大值。

适用于 UWP 的等效 WinUI 2 API:Windows 应用 SDK中适用于 WinUI 的 Microsoft.UI.Xaml.Controls.ColorPicker.MaxValue (,请参阅Windows 应用 SDK命名空间) 。

public:
 property int MaxValue { int get(); void set(int value); };
int MaxValue();

void MaxValue(int value);
public int MaxValue { get; set; }
var int32 = colorPicker.maxValue;
colorPicker.maxValue = int32;
Public Property MaxValue As Integer
<ColorPicker MaxValue="int" .../>

属性值

Int32

int

0-100 范围内的最大值。 默认值为 100。

注解

Value 值的有效范围为 0-100。 设置超出此范围的值将导致异常。

适用于