共用方式為


ColorPicker.MaxSaturation 屬性

定義

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

適用于 UWP 的對等 WinUI 2 APIMicrosoft.UI.Xaml.Controls.ColorPicker.MaxSaturation (在Windows 應用程式 SDK中,請參閱Windows 應用程式 SDK命名空間) 。

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

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

屬性值

Int32

int

範圍 0-100 中的飽和度值上限。 預設值為 100。

備註

飽和度值的有效範圍是 0-100。 設定超出此範圍的值會導致例外狀況。

適用於