MainWindow.xaml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. <Window x:Class="GeekDesk.MainWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:uc="clr-namespace:GeekDesk.Control.UserControls.PannelCard"
  7. xmlns:cn="clr-namespace:GeekDesk.Constant"
  8. mc:Ignorable="d"
  9. xmlns:cvt="clr-namespace:GeekDesk.Converts"
  10. x:Name="AppWindow"
  11. xmlns:hc="https://handyorg.github.io/handycontrol" xmlns:viewmodel="clr-namespace:GeekDesk.ViewModel"
  12. d:DataContext="{d:DesignInstance Type=viewmodel:AppData}"
  13. Title="GeekDesk"
  14. MinWidth="600"
  15. MinHeight="400"
  16. WindowStyle="None"
  17. AllowsTransparency="True"
  18. Background="Transparent"
  19. ShowInTaskbar="False"
  20. Opacity="0"
  21. Deactivated="AppWindow_Deactivated"
  22. SizeChanged="Window_SizeChanged"
  23. KeyDown="OnKeyDown"
  24. Focusable="True"
  25. MouseDown="MainWindow_MouseDown"
  26. MouseEnter="MainWindow_MouseEnter"
  27. GotFocus="Window_GotFocus"
  28. >
  29. <WindowChrome.WindowChrome>
  30. <WindowChrome CaptionHeight="0" ResizeBorderThickness="15"/>
  31. </WindowChrome.WindowChrome>
  32. <Window.Resources>
  33. <RoutedUICommand x:Key="SearchHotKeyDown" Text="SearchHotKeyDown"/>
  34. <cvt:MenuWidthConvert x:Key="MenuWidthConvert"/>
  35. <cvt:OpcityConvert x:Key="OpcityConvert"/>
  36. <cvt:IntToCornerRadius x:Key="IntToCornerRadius"/>
  37. <cvt:DoubleToGridLength x:Key="DoubleToGridLength"/>
  38. <Style x:Key="BorderBacStyle" TargetType="Border">
  39. </Style>
  40. </Window.Resources>
  41. <Window.InputBindings>
  42. <KeyBinding Gesture="Ctrl+F" Key="F" Command="{StaticResource SearchHotKeyDown}"/>
  43. </Window.InputBindings>
  44. <Window.CommandBindings>
  45. <CommandBinding Command="{StaticResource SearchHotKeyDown}" CanExecute="SearchHotKeyDown"/>
  46. <!--<CommandBinding Command="ChangeImgBG" Executed="ChangeImgBG_Executed" CanExecute="ChangeImgBG_CanExecute" />-->
  47. </Window.CommandBindings>
  48. <Window.Effect>
  49. <DropShadowEffect BlurRadius="30" Direction="-90" Color="Gray"
  50. RenderingBias="Quality" ShadowDepth="2"/>
  51. </Window.Effect>
  52. <Border Margin="20" CornerRadius="{Binding AppConfig.PannelCornerRadius, Mode=TwoWay, Converter={StaticResource IntToCornerRadius}}" BorderThickness="0"
  53. Background="AliceBlue"
  54. Opacity="{Binding AppConfig.PannelOpacity, Mode=TwoWay, Converter={StaticResource OpcityConvert}}"
  55. hc:Dialog.Token="IconInfoDialog"
  56. Focusable="True"
  57. >
  58. <hc:DialogContainer Focusable="True">
  59. <!-- -1是为了解决圆角白线的问题-->
  60. <Border x:Name="BGBorder"
  61. CornerRadius="{Binding AppConfig.PannelCornerRadius, Mode=TwoWay, Converter={StaticResource IntToCornerRadius}}"
  62. BorderThickness="0"
  63. Margin="-1"
  64. >
  65. <Grid>
  66. <Grid.RowDefinitions>
  67. <RowDefinition Height="40" MouseMove="DragMove"></RowDefinition>
  68. <RowDefinition Height="*"></RowDefinition>
  69. </Grid.RowDefinitions>
  70. <Grid.ColumnDefinitions>
  71. <ColumnDefinition x:Name="LeftColumn" MinWidth="80" Width="{Binding AppConfig.MenuCardWidth, Mode=TwoWay, Converter={StaticResource DoubleToGridLength}}" MaxWidth="200"></ColumnDefinition>
  72. <ColumnDefinition x:Name="RightColumn" Width="*"></ColumnDefinition>
  73. </Grid.ColumnDefinitions>
  74. <!--获取焦点用-->
  75. <TextBox x:Name="EmptyTextBox" Width="0"/>
  76. <DockPanel Grid.Row="0" Grid.Column="0" MouseMove="DragMove">
  77. <DockPanel.Background>
  78. <SolidColorBrush Opacity="0.01"/>
  79. </DockPanel.Background>
  80. <Image Visibility="{Binding AppConfig.TitleLogoVisible}" Source="/Resource/Image/TitleLogo.png" Margin="10,0,0,0" Width="94" Height="30" HorizontalAlignment="Left"/>
  81. </DockPanel>
  82. <DockPanel Grid.Row="0" Grid.Column="2" MouseMove="DragMove">
  83. <DockPanel.Background>
  84. <SolidColorBrush Opacity="0.01"/>
  85. </DockPanel.Background>
  86. <hc:UniformSpacingPanel Grid.ColumnSpan="4" HorizontalAlignment="Right" VerticalAlignment="Center">
  87. <Button Background="Transparent"
  88. BorderThickness="0"
  89. hc:IconElement.Geometry="M917.930667 512c0-57.6 36.181333-106.496 86.869333-125.952a505.429333 505.429333 0 0 0-55.210667-133.461333A134.826667 134.826667 0 0 1 771.413333 74.410667 507.733333 507.733333 0 0 0 637.952 19.2 135.168 135.168 0 0 1 512 106.069333 134.912 134.912 0 0 1 386.048 19.2 505.429333 505.429333 0 0 0 252.586667 74.410667c22.186667 49.749333 13.141333 109.824-27.562667 150.528a135.168 135.168 0 0 1-150.528 27.648 502.016 502.016 0 0 0-55.296 133.461333c50.688 19.626667 86.869333 68.437333 86.869333 125.952 0 57.6-36.181333 106.496-86.869333 125.952 12.117333 47.530667 30.72 92.330667 55.210667 133.461333a134.826667 134.826667 0 0 1 178.090666 178.176 507.733333 507.733333 0 0 0 133.546667 55.210667A135.168 135.168 0 0 1 512 917.930667c57.6 0 106.496 36.181333 125.952 86.869333a505.429333 505.429333 0 0 0 133.461333-55.210667 134.912 134.912 0 0 1 27.562667-150.528 135.168 135.168 0 0 1 150.528-27.648 502.016 502.016 0 0 0 55.296-133.461333A134.912 134.912 0 0 1 917.930667 512zM512 647.338667a135.338667 135.338667 0 1 1 0.085333-270.762667A135.338667 135.338667 0 0 1 512 647.338667z"
  90. hc:IconElement.Height="18"
  91. hc:IconElement.Width="18"
  92. HorizontalAlignment="Right"
  93. Click="ConfigButtonClick"
  94. Initialized="SettingButton_Initialized"
  95. x:Name="SettingButton"
  96. FocusVisualStyle="{x:Null}"
  97. >
  98. <Button.ContextMenu>
  99. <ContextMenu x:Name="SettingMenus" Width="130">
  100. <MenuItem Header="设置" Click="ConfigMenuClick"/>
  101. <MenuItem Header="待办" Click="BacklogMenuClick"/>
  102. </ContextMenu>
  103. </Button.ContextMenu>
  104. </Button>
  105. <Button Background="Transparent"
  106. BorderThickness="0"
  107. hc:IconElement.Geometry="M828.770654 148.714771C641.293737-20.89959 354.184117-19.590868 168.245698 152.630946c-212.062907 196.418185-212.062907 522.329912 0 718.748098 185.93842 172.221815 473.048039 173.520546 660.524956 3.916176 219.435707-198.536117 219.435707-528.054322 0-726.580449z m-121.880976 569.643707c-11.708566 11.708566-30.680039 11.708566-42.388605 0L502.729054 556.586459c-0.659356-0.659356-1.728312-0.659356-2.397659 0L338.609327 718.318517c-11.708566 11.708566-30.680039 11.708566-42.388605 0l-0.039961-0.039961c-11.708566-11.708566-11.708566-30.680039 0-42.388605l161.732059-161.732058c0.659356-0.659356 0.659356-1.728312 0-2.397659L296.1408 350.008195c-11.708566-11.708566-11.708566-30.680039 0-42.388605l0.039961-0.039961c11.708566-11.708566 30.680039-11.708566 42.388605 0l161.772019 161.77202c0.659356 0.659356 1.728312 0.659356 2.397659 0L664.551024 307.539668c11.708566-11.708566 30.680039-11.708566 42.388605 0l0.039961 0.039961c11.708566 11.708566 11.708566 30.680039 0 42.388605L545.15762 511.770224c-0.659356 0.659356-0.659356 1.728312 0 2.397659L706.919649 675.939902c11.708566 11.708566 11.708566 30.680039 0 42.388605l-0.029971 0.029971z"
  108. hc:IconElement.Height="18"
  109. hc:IconElement.Width="18"
  110. HorizontalAlignment="Right"
  111. Click="CloseButtonClick"
  112. FocusVisualStyle="{x:Null}"
  113. />
  114. </hc:UniformSpacingPanel>
  115. </DockPanel>
  116. <uc:LeftCardControl x:Name="LeftCard" Grid.Row="1" Grid.Column="0"/>
  117. <!--分割线-->
  118. <GridSplitter Opacity="0" Grid.Row="1" Grid.Column="0" Width="1" VerticalAlignment="Stretch" HorizontalAlignment="Right"/>
  119. <!--搜索输入框-->
  120. <TextBox Panel.ZIndex="2" Grid.Row="0" Grid.Column="1"
  121. x:Name="SearchBox"
  122. Width="0"
  123. Margin="-100,5,0,0"
  124. Height="32"
  125. FontSize="16"
  126. BorderThickness="0"
  127. TextChanged="SearchBox_TextChanged"
  128. />
  129. <hc:NotifyIcon Icon="/Taskbar.ico" Click="NotifyIcon_Click" x:Name="BarIcon"
  130. Visibility="{Binding AppConfig.ShowBarIcon, Mode=TwoWay, Converter={StaticResource Boolean2VisibilityConverter}}">
  131. <hc:NotifyIcon.ContextMenu>
  132. <ContextMenu Width="130" x:Name="TaskbarContextMenu">
  133. <MenuItem Header="打开面板" Click="ShowApp"/>
  134. <MenuItem Header="拾色器" Click="ColorPicker"/>
  135. <MenuItem Header="隐藏图标" Click="CloseBarIcon"/>
  136. <MenuItem Header="待办" Click="BacklogMenuClick"/>
  137. <MenuItem Header="程序目录" Click="OpenThisDir"/>
  138. <MenuItem Header="设置" Click="ConfigApp"/>
  139. <MenuItem Header="重启" Click="ReStartApp"/>
  140. <MenuItem Header="退出" Click="ExitApp"/>
  141. </ContextMenu>
  142. </hc:NotifyIcon.ContextMenu>
  143. </hc:NotifyIcon>
  144. <uc:RightCardControl x:Name="RightCard" Grid.Row="1" Grid.Column="1"/>
  145. <StackPanel hc:Growl.GrowlParent="True" VerticalAlignment="Top" Margin="0,10,10,0"/>
  146. </Grid>
  147. </Border>
  148. </hc:DialogContainer>
  149. </Border>
  150. </Window>