csharpc-sharpdotnetxamlavaloniauicross-platformcross-platform-xamlavaloniaguimulti-platformuser-interfacedotnetcore
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.6 KiB
36 lines
1.6 KiB
<UserControl xmlns="https://github.com/avaloniaui">
|
|
<StackPanel Orientation="Vertical" Gap="4">
|
|
<TextBlock Classes="h1">Context Menu</TextBlock>
|
|
<TextBlock Classes="h2">A right click menu that can be applied to any control.</TextBlock>
|
|
|
|
<StackPanel Orientation="Horizontal"
|
|
Margin="0,16,0,0"
|
|
HorizontalAlignment="Center"
|
|
Gap="16">
|
|
<Border Background="{DynamicResource ThemeAccentBrush}"
|
|
Padding="48,48,48,48">
|
|
<Border.ContextMenu>
|
|
<ContextMenu>
|
|
<MenuItem Header="Standard _Menu Item"/>
|
|
<Separator/>
|
|
<MenuItem Header="Menu with _Submenu">
|
|
<MenuItem Header="Submenu _1"/>
|
|
<MenuItem Header="Submenu _2"/>
|
|
</MenuItem>
|
|
<MenuItem Header="Menu Item with _Icon">
|
|
<MenuItem.Icon>
|
|
<Image Source="resm:ControlCatalog.Assets.github_icon.png"/>
|
|
</MenuItem.Icon>
|
|
</MenuItem>
|
|
<MenuItem Header="Menu Item with _Checkbox">
|
|
<MenuItem.Icon>
|
|
<CheckBox BorderThickness="0" IsHitTestVisible="False" IsChecked="True"/>
|
|
</MenuItem.Icon>
|
|
</MenuItem>
|
|
</ContextMenu>
|
|
</Border.ContextMenu>
|
|
<TextBlock Text="Right Click Here"/>
|
|
</Border>
|
|
</StackPanel>
|
|
</StackPanel>
|
|
</UserControl>
|