优化功能 beta
This commit is contained in:
35
Control/ConfigDialog.xaml
Normal file
35
Control/ConfigDialog.xaml
Normal file
@@ -0,0 +1,35 @@
|
||||
<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>
|
||||
14
Control/ConfigDialog.xaml.cs
Normal file
14
Control/ConfigDialog.xaml.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
|
||||
namespace GeekDesk.Control
|
||||
{
|
||||
/// <summary>
|
||||
/// ConfigDialog.xaml 的交互逻辑
|
||||
/// </summary>
|
||||
public partial class ConfigDialog
|
||||
{
|
||||
public ConfigDialog()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user