mirror of https://github.com/icsharpcode/ILSpy.git
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.
14 lines
529 B
14 lines
529 B
<UserControl x:Class="BamlTest.UserControl1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> |
|
<UserControl.Resources> |
|
<Style x:Key="baseStyle" TargetType="{x:Type Control}" /> |
|
</UserControl.Resources> |
|
<Grid> |
|
<Grid.ContextMenu> |
|
<ContextMenu> |
|
<ContextMenu.Resources> |
|
<Style TargetType="{x:Type Control}" BasedOn="{StaticResource baseStyle}" /> |
|
</ContextMenu.Resources> |
|
</ContextMenu> |
|
</Grid.ContextMenu> |
|
</Grid> |
|
</UserControl> |