-
Notifications
You must be signed in to change notification settings - Fork 76
SelectionControlAssist
PigeonMaster edited this page Mar 4, 2021
·
1 revision
SelectionControlAssist
provides some properties for decorations of CheckBox
and RadioButton
.
Size
Foreground
InnerForeground
(only RadioButton supported)
Change decoration Size
to 24 of CheckBox
<CheckBox ...
assists:SelectionControlAssist.Size="24"
... />
Change decoration Size
to 24 of CheckBox
, but using Style
to affects all checkboxes under this StackPanel
.
<StackPanel ...>
<StackPanel.Styles>
<Style Selector="CheckBox">
<Setter Property="assists:SelectionControlAssist.Size" Value="24"/>
</Style>
</StackPanel.Styles>
<CheckBox Content="1"/>
<CheckBox Content="2"/>
<CheckBox Content="3"/>
<CheckBox Content="4"/>
</StackPanel>
Material.Avalonia Wiki pages is still WIP (work in progress), Pages could not ready for show if they unclickable.
Main section
- Main page
- Getting started
- Screenshots of Demo
- FAQ (frequently asked questions)
- Breaking changes
- Nightly builds
Widgets / Controls
- Buttons
- Inputs
- TextBox
- Switchable
- CheckBox
- RadioButton
- ToggleButton
- ToggleSwitch
- Selectable
- ListBox
- ComboBox
- Pickers
- Feedbacks
- ProgressBar
- Snackbar
- Dialogs
- AlertDialog
- TextFieldDialog
- CustomDialog
- Containers / Layouts
- ColorZone
- Card
- Expander
- DataGrid
Theming
Builders
Assist for widgets
- ButtonAssist
- SelectionControlAssist
- ShadowAssist
- SliderAssist
- TextFieldAssist
- TransitionAssist