-
Notifications
You must be signed in to change notification settings - Fork 0
CompositeControl
SirePi edited this page Mar 12, 2018
·
2 revisions
A CompositeControl is a complex Control which is actually composed by a number of simpler sub-controls layout in a ControlsContainer (i.e. a ScrollBar is actually composed by three Buttons and a CanvasPanel inside a DockPanel). Derives from Control. Both CompositeControls and ControlsContainers implment ILayout interface, which exposes a
-
IsPassthrough property that defines if "empty" areas of the Control should let the mouse click events pass through to the lower UIs, or not.
In addition to the Control's base properties and delegates, it also exposes:
-
Margin - A Border object that defines the margin of the CompositeControl.
Controls
- Button
- ToggleButton
- CheckButton
- RadioButton
- TextBox
- TextBlock
- Separator
- HorizontalScrollBar
- VerticalScrollBar
- ProgressBar
- ListBox
ControlContainers