Advertisement
Guest User

Untitled

a guest
Apr 7th, 2020
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.88 KB | None | 0 0
  1. <Window x:Class="WpfApp1.MainWindow"
  2.        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3.        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4.        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5.        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6.        mc:Ignorable="d"
  7.        Title="MainWindow" Height="450" Width="800">
  8.     <Window.Resources>
  9.         <Style TargetType="MenuItem">
  10.             <Setter Property="Foreground" Value="Red" />
  11.         </Style>
  12.     </Window.Resources>
  13.     <DockPanel>
  14.         <Menu DockPanel.Dock="Top">
  15.             <MenuItem Header="_File">
  16.                 <MenuItem Header="_New" />
  17.                 <MenuItem Header="Parent">
  18.                     <MenuItem Header="Nested"/>
  19.                 </MenuItem>
  20.             </MenuItem>
  21.         </Menu>
  22.     </DockPanel>
  23. </Window>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement