35 lines
1.4 KiB
XML
35 lines
1.4 KiB
XML
<hc:Window x:Class="GeekDesk.Control.ConfigDialog"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:hc="https://handyorg.github.io/handycontrol"
|
|
mc:Ignorable="d"
|
|
WindowStartupLocation="CenterScreen"
|
|
Height="450"
|
|
Width="800"
|
|
WindowStyle="None"
|
|
AllowsTransparency="True"
|
|
Opacity="0.9"
|
|
>
|
|
<hc:Window.Background>
|
|
<SolidColorBrush Color="AliceBlue" Opacity="0.9"/>
|
|
</hc:Window.Background>
|
|
|
|
<Grid>
|
|
<hc:SideMenu BorderThickness="1" Width="200" Margin="32">
|
|
<hc:Interaction.Triggers>
|
|
<hc:EventTrigger EventName="SelectionChanged">
|
|
<hc:EventToCommand Command="{Binding SwitchItemCmd}" PassEventArgsToCommand="True" />
|
|
</hc:EventTrigger>
|
|
</hc:Interaction.Triggers>
|
|
|
|
<hc:SideMenuItem Header="Work Items">
|
|
<hc:SideMenuItem.Icon>
|
|
<TextBlock Text="" Style="{StaticResource TextBlockFabricIcons}"/>
|
|
</hc:SideMenuItem.Icon>
|
|
</hc:SideMenuItem>
|
|
</hc:SideMenu>
|
|
</Grid>
|
|
|
|
</hc:Window> |