ColorPicker.MinHue 属性

定义

获取或设置 0-359 范围内的最小 Hue 值。

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

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

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

属性值

Int32

int

0-359 范围内的最小 Hue 值。 默认值为 0。

注解

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

适用于