BooleanToVisibilityHints enum¶
Attributes: [Flags]
Defined in
Namespace: ReactiveUI.Binding.Wpf
Assembly: ReactiveUI.Binding.Wpf.dll
Full name: ReactiveUI.Binding.Wpf.BooleanToVisibilityHints
Modifiers: public sealed
Summary¶
Enum that hints at the visibility of a UI element.
Applies to
net10.0-windows10.0.19041, net9.0-windows10.0.19041, net8.0-windows10.0.19041, net462, net481
Values¶
| Name | Value | Description |
|---|---|---|
None | 0 | Do not modify the boolean type conversion from its default action of using Visibility.Collapsed. |
Inverse | 2 | Inverse the action of the boolean type conversion; when true, collapse the visibility. |
UseHidden | 4 | Use Visibility.Hidden rather than Visibility.Collapsed for false values. |