Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. <Window.Resources>
  2. <Style TargetType="MenuItem" x:Key="MenuItemsStyle">
  3. <Setter Property="Padding" Value="2"/>
  4. </Style>
  5. </Window.Resources>
  6.  
  7. <Menu Width="auto" Height="auto" HorizontalAlignment="Left" VerticalAlignment="Top">
  8. <MenuItem Header="File">
  9. <MenuItem Header="List">
  10.  
  11. <MenuItem Style="{StaticResource MenuItemsStyle}">
  12. <MenuItem.Header>
  13. <StackPanel Orientation="Horizontal">
  14. <TextBlock Width="100" Text="1 File................."/>
  15. <TextBlock>23 августа</TextBlock>
  16. </StackPanel>
  17. </MenuItem.Header>
  18. </MenuItem>
  19.  
  20. <MenuItem Style="{StaticResource MenuItemsStyle}">
  21. <MenuItem.Header>
  22. <StackPanel Orientation="Horizontal">
  23. <TextBlock Width="100" Text="1 File................."/>
  24. <TextBlock>23 августа</TextBlock>
  25. </StackPanel>
  26. </MenuItem.Header>
  27. </MenuItem>
  28.  
  29. </MenuItem>
  30. </MenuItem>
  31. </Menu>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement