mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
Plugins - Disable plugins that caused a crash Tray icon - Added menu items for quick access
31 lines
1.8 KiB
XML
31 lines
1.8 KiB
XML
<UserControl x:Class="Artemis.UI.Screens.Sidebar.SidebarView"
|
|
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"
|
|
xmlns:sidebar="clr-namespace:Artemis.UI.Screens.Sidebar"
|
|
xmlns:controls="clr-namespace:MaterialDesignExtensions.Controls;assembly=MaterialDesignExtensions"
|
|
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
|
|
xmlns:s="https://github.com/canton7/Stylet"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="450" d:DesignWidth="800"
|
|
d:DataContext="{d:DesignInstance sidebar:SidebarViewModel}">
|
|
<StackPanel>
|
|
<!-- Placeholder -->
|
|
<StackPanel Margin="15">
|
|
<materialDesign:PackIcon Kind="QuestionMarkCircle" Width="50" Height="50" />
|
|
<TextBlock Style="{StaticResource MaterialDesignHeadline6TextBlock}" Margin="0 15 0 0">
|
|
Active module
|
|
</TextBlock>
|
|
<ComboBox BorderThickness="0" Foreground="{DynamicResource MaterialDesignNavigationItemSubheader}" materialDesign:HintAssist.Hint="Active profile">
|
|
<ComboBoxItem>Profile 1</ComboBoxItem>
|
|
<ComboBoxItem>Profile 2</ComboBoxItem>
|
|
<ComboBoxItem>Profile 3</ComboBoxItem>
|
|
<ComboBoxItem>Profile 4</ComboBoxItem>
|
|
</ComboBox>
|
|
</StackPanel>
|
|
|
|
<controls:SideNavigation Items="{Binding SidebarItems}" SelectedItem="{Binding SelectedItem}" WillSelectNavigationItemCommand="{s:Action SelectItem}" />
|
|
</StackPanel>
|
|
|
|
</UserControl> |