共用方式為


ColorPicker.MaxValue 屬性

定義

取得或設定範圍 0-100 中的最大值。

適用于 UWP 的對等 WinUI 2 APIMicrosoft.UI.Xaml.Controls.ColorPicker.MaxValue (在Windows 應用程式 SDK中,請參閱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。 設定超出此範圍的值會導致例外狀況。

適用於