Guest User

Untitled

a guest
Aug 20th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. <UserControl x:Class="navigationApp.dashboard"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:navigationApp"
  7. mc:Ignorable="d"
  8. d:DesignHeight="650" d:DesignWidth="1120">
  9. <Grid >
  10. <TreeView>
  11. <TreeViewItem Header="Dashboard" Name="menuDashboard" MouseLeftButtonDown="menuDashboard_MouseLeftButtonDown"/>
  12. <TreeViewItem Header="Customer">
  13. <TreeViewItem Header="Customer Listing" Name="menuCustomerList" MouseLeftButtonDown="menuCustomerList_MouseLeftButtonDown"/>
  14. <TreeViewItem Header="Add New Customer" Name="menuCustomerReg" MouseLeftButtonDown="menuCustomerReg_MouseLeftButtonDown"/>
  15. </TreeViewItem>
  16. <TreeViewItem Header="Settings"/>
  17. </TreeView>
  18. </Grid>
  19. </UserControl>
Add Comment
Please, Sign In to add comment