UIControlState 枚举

定义

的可能状态的 UIControl枚举。

此枚举支持其成员值的按位组合。

[ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All, null)]
[System.Flags]
public enum UIControlState
type UIControlState = 
继承
UIControlState
属性

字段

Application 16711680

控件的应用程序定义状态的掩码。 可能的应用程序保留值0x00010000到0x00ff0000。

Disabled 2

控件处于禁用状态。 可以通过 控件的 Enabled 属性更改此设置。

Focused 8

指示控件具有焦点。

Highlighted 1

控件突出显示。 可以通过 控件的 Highlighted 属性更改此设置。

Normal 0

控件的正常状态 (未禁用且未隐藏)

Reserved 4278190080

保留掩码,应用程序不应在此范围内定义任何状态。

Selected 4

控件的选定状态。 可以通过访问 UIControl 的 Selected 属性来更改此值。

注解

表示控件状态的标志。

适用于