mirror of https://github.com/icsharpcode/ILSpy.git
3 changed files with 26 additions and 0 deletions
@ -0,0 +1,19 @@
@@ -0,0 +1,19 @@
|
||||
<UserControl x:Class="BamlTest.UserControl1" |
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
||||
mc:Ignorable="d"> |
||||
<UserControl.Resources> |
||||
<Style TargetType="Control" x:Key="baseStyle" /> |
||||
</UserControl.Resources> |
||||
<Grid> |
||||
<Grid.ContextMenu> |
||||
<ContextMenu> |
||||
<ContextMenu.Resources> |
||||
<Style TargetType="Control" BasedOn="{StaticResource baseStyle}" /> |
||||
</ContextMenu.Resources> |
||||
</ContextMenu> |
||||
</Grid.ContextMenu> |
||||
</Grid> |
||||
</UserControl> |
Loading…
Reference in new issue