| 1 | <Window |
| 2 | x:Class="RblxTool.MainWindow" |
| 3 | xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
| 4 | xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
| 5 | xmlns:controls="using:Microsoft.UI.Xaml.Controls"> |
| 6 | |
| 7 | <Grid x:Name="RootGrid"> |
| 8 | <Grid.RowDefinitions> |
| 9 | <RowDefinition Height="Auto" /> |
| 10 | <RowDefinition Height="*" /> |
| 11 | </Grid.RowDefinitions> |
| 12 | |
| 13 | <Grid x:Name="TitleBarArea" Height="40" Background="Transparent"> |
| 14 | <TextBlock |
| 15 | Margin="16,0,0,0" |
| 16 | VerticalAlignment="Center" |
| 17 | FontSize="13" |
| 18 | FontWeight="SemiBold" |
| 19 | Text="rblxtool" /> |
| 20 | <TextBlock |
| 21 | x:Name="ActiveAccountText" |
| 22 | Margin="0,0,180,0" |
| 23 | HorizontalAlignment="Right" |
| 24 | VerticalAlignment="Center" |
| 25 | FontSize="12" |
| 26 | Opacity="0.7" /> |
| 27 | </Grid> |
| 28 | |
| 29 | <controls:NavigationView |
| 30 | x:Name="Nav" |
| 31 | Grid.Row="1" |
| 32 | IsBackButtonVisible="Collapsed" |
| 33 | IsSettingsVisible="False" |
| 34 | PaneDisplayMode="Left" |
| 35 | SelectionChanged="OnNavSelectionChanged"> |
| 36 | <controls:NavigationView.MenuItems> |
| 37 | <controls:NavigationViewItem Content="Dashboard" Tag="dashboard"> |
| 38 | <controls:NavigationViewItem.Icon> |
| 39 | <SymbolIcon Symbol="Home" /> |
| 40 | </controls:NavigationViewItem.Icon> |
| 41 | </controls:NavigationViewItem> |
| 42 | <controls:NavigationViewItem Content="Accounts" Tag="accounts"> |
| 43 | <controls:NavigationViewItem.Icon> |
| 44 | <SymbolIcon Symbol="Contact" /> |
| 45 | </controls:NavigationViewItem.Icon> |
| 46 | </controls:NavigationViewItem> |
| 47 | <controls:NavigationViewItem Content="Free Sweep" Tag="sweep"> |
| 48 | <controls:NavigationViewItem.Icon> |
| 49 | <SymbolIcon Symbol="Shop" /> |
| 50 | </controls:NavigationViewItem.Icon> |
| 51 | </controls:NavigationViewItem> |
| 52 | <controls:NavigationViewItem Content="Sniper" Tag="sniper"> |
| 53 | <controls:NavigationViewItem.Icon> |
| 54 | <SymbolIcon Symbol="Target" /> |
| 55 | </controls:NavigationViewItem.Icon> |
| 56 | </controls:NavigationViewItem> |
| 57 | <controls:NavigationViewItem Content="Group Hunter" Tag="groups"> |
| 58 | <controls:NavigationViewItem.Icon> |
| 59 | <SymbolIcon Symbol="People" /> |
| 60 | </controls:NavigationViewItem.Icon> |
| 61 | </controls:NavigationViewItem> |
| 62 | </controls:NavigationView.MenuItems> |
| 63 | |
| 64 | <Frame x:Name="ContentFrame" /> |
| 65 | </controls:NavigationView> |
| 66 | </Grid> |
| 67 | </Window> |