| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024 | 
							- using GeekDesk.Constant;
 
- using GeekDesk.Control.Other;
 
- using GeekDesk.Control.UserControls.Config;
 
- using GeekDesk.Control.UserControls.PannelCard;
 
- using GeekDesk.Control.Windows;
 
- using GeekDesk.Interface;
 
- using GeekDesk.MyThread;
 
- using GeekDesk.Plugins.EveryThing;
 
- using GeekDesk.Plugins.EveryThing.Constant;
 
- using GeekDesk.Task;
 
- using GeekDesk.Util;
 
- using GeekDesk.ViewModel;
 
- using GeekDesk.ViewModel.Temp;
 
- using Microsoft.Win32;
 
- using NPinyin;
 
- using ShowSeconds;
 
- using System;
 
- using System.Collections.ObjectModel;
 
- using System.Diagnostics;
 
- using System.Runtime.InteropServices;
 
- using System.Text;
 
- using System.Threading;
 
- using System.Windows;
 
- using System.Windows.Controls;
 
- using System.Windows.Input;
 
- using System.Windows.Interop;
 
- using System.Windows.Media.Animation;
 
- using System.Windows.Media.Imaging;
 
- using System.Windows.Shell;
 
- using System.Windows.Threading;
 
- using static GeekDesk.Util.ShowWindowFollowMouse;
 
- namespace GeekDesk
 
- {
 
-     /// <summary>
 
-     /// MainWindow.xaml 的交互逻辑
 
-     /// </summary>
 
-     /// 
 
-     public partial class MainWindow : Window, IWindowCommon
 
-     {
 
-         public static AppData appData = CommonCode.GetAppDataByFile();
 
-         public static ToDoInfoWindow toDoInfoWindow;
 
-         public static int hotKeyId = -1;
 
-         public static int toDoHotKeyId = -1;
 
-         public static int colorPickerHotKeyId = -1;
 
-         public static MainWindow mainWindow;
 
-         public MainWindow()
 
-         {
 
-             //加载数据
 
-             LoadData();
 
-             InitializeComponent();
 
-             //用于其他类访问
 
-             mainWindow = this;
 
-             //执行待办提醒
 
-             ToDoTask.BackLogCheck();
 
-             ////实例化隐藏 Hide类,进行时间timer设置
 
-             MarginHide.ReadyHide(this);
 
-             if (appData.AppConfig.MarginHide)
 
-             {
 
-                 MarginHide.StartHide();
 
-             }
 
-         }
 
-     
 
-         /// <summary>
 
-         /// 搜索快捷键按下
 
-         /// </summary>
 
-         /// <param name="sender"></param>
 
-         /// <param name="e"></param>
 
-         private void SearchHotKeyDown(object sender, CanExecuteRoutedEventArgs e)
 
-         {
 
-             if (appData.AppConfig.SearchType == SearchType.HOT_KEY && !RunTimeStatus.SEARCH_BOX_SHOW)
 
-             {
 
-                 ShowSearchBox();
 
-             } else if (RunTimeStatus.SEARCH_BOX_SHOW)
 
-             {
 
-                 HidedSearchBox();
 
-             }
 
-         }
 
-         /// <summary>
 
-         /// 显示搜索框
 
-         /// </summary>
 
-         private void ShowSearchBox()
 
-         {
 
-             RunTimeStatus.SEARCH_BOX_SHOW = true;
 
-             RightCard.VisibilitySearchCard(Visibility.Visible);
 
-             SearchBox.Width = 400;
 
-             SearchBox.Focus();
 
-             //执行一遍a查询
 
-             //SearchBox_TextChanged(null, null);
 
-         }
 
-         /// <summary>
 
-         /// 搜索开始
 
-         /// </summary>
 
-         /// <param name="sender"></param>
 
-         /// <param name="e"></param>
 
-         private void SearchBox_TextChanged(object sender, TextChangedEventArgs e)
 
-         {
 
-             if (!RunTimeStatus.SEARCH_BOX_SHOW
 
-                && appData.AppConfig.SearchType != SearchType.KEY_DOWN
 
-                )
 
-             {
 
-                 SearchBox.TextChanged -= SearchBox_TextChanged;
 
-                 SearchBox.Clear();
 
-                 SearchBox.TextChanged += SearchBox_TextChanged;
 
-                 return;
 
-             }
 
-             if (!RunTimeStatus.SEARCH_BOX_SHOW) ShowSearchBox();
 
-             //刷新搜索后 鼠标移动次数置为0
 
-             RunTimeStatus.MOUSE_MOVE_COUNT = 0;
 
-             //隐藏popup
 
-             RightCard.MyPoptip.IsOpen = false;
 
-             string inputText = SearchBox.Text.ToLower();
 
-             if (!string.IsNullOrEmpty(inputText))
 
-             {
 
-                 RunTimeStatus.EVERYTHING_SEARCH_DELAY_TIME = 300;
 
-                 if (!RunTimeStatus.EVERYTHING_NEW_SEARCH)
 
-                 {                    
 
-                     RunTimeStatus.EVERYTHING_NEW_SEARCH = true;
 
-                     //显示搜索结果列表
 
-                     RightCard.VisibilitySearchCard(Visibility.Visible);
 
-                     //暂时隐藏条目信息
 
-                     SearchResContainer.Visibility = Visibility.Collapsed;
 
-                     //显示加载条
 
-                     RightCard.Loading_RightCard.Visibility = Visibility.Visible;
 
-                     object obj = RightCard.VerticalCard.Content;
 
-                     if (obj != null)
 
-                     {
 
-                         SearchResControl control = obj as SearchResControl;
 
-                         control.VerticalUFG.Visibility = Visibility.Collapsed;
 
-                     }
 
-                     SearchDelay();
 
-                 }
 
-             } else
 
-             {
 
-                 //隐藏条目信息
 
-                 SearchResContainer.Visibility = Visibility.Collapsed;
 
-                 //清空查询结果
 
-                 object obj = RightCard.VerticalCard.Content;
 
-                 if (obj != null)
 
-                 {
 
-                     SearchResControl control = obj as SearchResControl;
 
-                     control.VerticalUFG.Visibility = Visibility.Collapsed;
 
-                 }
 
-             }
 
-             
 
-         }
 
-         private void SearchDelay()
 
-         {
 
-             new Thread(() =>
 
-             {
 
-                 while (RunTimeStatus.EVERYTHING_SEARCH_DELAY_TIME > 0)
 
-                 {
 
-                     Thread.Sleep(10);
 
-                     RunTimeStatus.EVERYTHING_SEARCH_DELAY_TIME -= 10;
 
-                 }
 
-                 RunTimeStatus.EVERYTHING_NEW_SEARCH = false;
 
-                 this.Dispatcher.Invoke(() =>
 
-                 {
 
-                     string inputText = SearchBox.Text.ToLower().Trim();
 
-                     new Thread(() =>
 
-                     {
 
-                         ObservableCollection<IconInfo> resList = new ObservableCollection<IconInfo>();
 
-                         if (appData.AppConfig.EnableEveryThing == true)
 
-                         {
 
-                             ObservableCollection<IconInfo> iconBakList = EveryThingUtil.Search(inputText);                            
 
-                             foreach (IconInfo icon in iconBakList)
 
-                             {
 
-                                 resList.Add(icon);
 
-                             }
 
-                         }
 
-                         //GeekDesk数据搜索
 
-                         ObservableCollection<MenuInfo> menuList = appData.MenuList;
 
-                         foreach (MenuInfo menu in menuList)
 
-                         {
 
-                             ObservableCollection<IconInfo> iconList = menu.IconList;
 
-                             foreach (IconInfo icon in iconList)
 
-                             {
 
-                                 if (RunTimeStatus.EVERYTHING_NEW_SEARCH) return;
 
-                                 string pyName = Pinyin.GetInitials(icon.Name).ToLower();
 
-                                 if (icon.Name.Contains(inputText) || pyName.Contains(inputText))
 
-                                 {
 
-                                     resList.Add(icon);
 
-                                 }
 
-                             }
 
-                         }
 
-                         this.Dispatcher.Invoke(() =>
 
-                         {
 
-                             if (appData.AppConfig.EnableEveryThing == true)
 
-                             {
 
-                                 SearchResText.Text = resList.Count + " of " + Convert.ToInt32(EveryThingUtil.Everything_GetNumResults());
 
-                                 SearchResContainer.Visibility = Visibility.Visible;
 
-                             }
 
-                             SearchResControl control = new SearchResControl(resList);
 
-                             RightCard.VerticalCard.Content = control;
 
-                             //关闭加载效果
 
-                             RightCard.Loading_RightCard.Visibility = Visibility.Collapsed;
 
-                         });
 
-                     }).Start();
 
-                 });
 
-             }).Start();
 
-         }
 
-         /// <summary>
 
-         /// 隐藏搜索框
 
-         /// </summary>
 
-         public void HidedSearchBox()
 
-         {
 
-             RunTimeStatus.EVERYTHING_NEW_SEARCH = true;
 
-             new Thread(() =>
 
-             {
 
-                 Thread.Sleep(1000);
 
-                 RunTimeStatus.EVERYTHING_NEW_SEARCH = false;
 
-             }).Start();
 
-             new Thread(() =>
 
-             {
 
-                 this.Dispatcher.Invoke(() =>
 
-                 {
 
-                     Keyboard.Focus(SearchBox);
 
-                     RunTimeStatus.SEARCH_BOX_SHOW = false;
 
-                     SearchBox.TextChanged -= SearchBox_TextChanged;
 
-                     SearchBox.Clear();
 
-                     SearchBox.TextChanged += SearchBox_TextChanged;
 
-                     SearchBox.Width = 0;
 
-                     SearchResText.Text = "0 of 0";
 
-                     SearchResContainer.Visibility = Visibility.Collapsed;
 
-                     RightCard.VerticalCard.Content = null;
 
-                     RightCard.VisibilitySearchCard(Visibility.Collapsed);
 
-                 });
 
-             }).Start();
 
-         }
 
-         /// <summary>
 
-         /// 加载缓存数据
 
-         /// </summary>
 
-         private void LoadData()
 
-         {
 
-             this.DataContext = appData;
 
-             if (appData.MenuList.Count == 0)
 
-             {
 
-                 appData.MenuList.Add(new MenuInfo() { MenuName = "NewMenu", MenuId = System.Guid.NewGuid().ToString(), MenuEdit = Visibility.Collapsed });
 
-             }
 
-             this.Width = appData.AppConfig.WindowWidth;
 
-             this.Height = appData.AppConfig.WindowHeight;
 
-         }
 
-         /// <summary>
 
-         /// 窗口加载完毕 执行方法
 
-         /// </summary>
 
-         /// <param name="sender"></param>
 
-         /// <param name="e"></param>
 
-         void Window_Loaded(object sender, RoutedEventArgs e)
 
-         {
 
-             BGSettingUtil.BGSetting();
 
-             if (!appData.AppConfig.StartedShowPanel)
 
-             {
 
-                 this.Visibility = Visibility.Collapsed;
 
-             }
 
-             else
 
-             {
 
-                 ShowApp();
 
-             }
 
-             //给任务栏图标一个名字
 
-             BarIcon.Text = Constants.MY_NAME;
 
-             //注册热键
 
-             if (true == appData.AppConfig.EnableAppHotKey)
 
-             {
 
-                 RegisterHotKey(true);
 
-             }
 
-             if (true == appData.AppConfig.EnableTodoHotKey)
 
-             {
 
-                 RegisterCreateToDoHotKey(true);
 
-             }
 
-             if (true == appData.AppConfig.EnableColorPickerHotKey)
 
-             {
 
-                 RegisterColorPickerHotKey(true);
 
-             }
 
-             //注册自启动
 
-             if (!appData.AppConfig.SelfStartUped && !Constants.DEV)
 
-             {
 
-                 RegisterUtil.SetSelfStarting(appData.AppConfig.SelfStartUp, Constants.MY_NAME);
 
-             }
 
-             //注册鼠标监听事件
 
-             if (appData.AppConfig.MouseMiddleShow)
 
-             {
 
-                 MouseHookThread.Hook();
 
-             }
 
-             //显秒插件
 
-             if (appData.AppConfig.SecondsWindow == true)
 
-             {
 
-                 SecondsWindow.ShowWindow();
 
-             }
 
-             //监听实时文件夹菜单
 
-             FileWatcher.EnableLinkMenuWatcher(appData);
 
-             //更新线程开启  检测更新
 
-             UpdateThread.Update();
 
-             //建立相对路径
 
-             RelativePathThread.MakeRelativePath();
 
-             //毛玻璃  暂时未解决阴影问题
 
-             //BlurGlassUtil.EnableBlur(this);
 
-             //设置归属桌面  解决桌面覆盖程序界面的bug
 
-             WindowUtil.SetOwner(this, WindowUtil.GetDesktopHandle(this, DesktopLayer.Progman));
 
-             if (appData.AppConfig.EnableEveryThing == true)
 
-             {
 
-                 //开启EveryThing插件
 
-                 EveryThingUtil.EnableEveryThing();
 
-             }
 
-             Keyboard.Focus(SearchBox);
 
-             MessageUtil.ChangeWindowMessageFilter(MessageUtil.WM_COPYDATA, 1);
 
-         }
 
-         /// <summary>
 
-         /// 注册当前窗口的热键
 
-         /// </summary>
 
-         public static void RegisterHotKey(bool first)
 
-         {
 
-             try
 
-             {
 
-                 if (appData.AppConfig.HotkeyModifiers != GlobalHotKey.HotkeyModifiers.None)
 
-                 {
 
-                     hotKeyId = GlobalHotKey.RegisterHotKey(appData.AppConfig.HotkeyModifiers, appData.AppConfig.Hotkey, () =>
 
-                     {
 
-                         if (RunTimeStatus.MAIN_HOT_KEY_DOWN) return;
 
-                         RunTimeStatus.MAIN_HOT_KEY_DOWN = true;
 
-                         new Thread(() =>
 
-                         {
 
-                             Thread.Sleep(RunTimeStatus.MAIN_HOT_KEY_TIME);
 
-                             RunTimeStatus.MAIN_HOT_KEY_DOWN = false;
 
-                         }).Start();
 
-                         if (MotionControl.hotkeyFinished)
 
-                         {
 
-                             if (CheckShouldShowApp())
 
-                             {
 
-                                 ShowApp();
 
-                             }
 
-                             else
 
-                             {
 
-                                 HideApp();
 
-                             }
 
-                         }
 
-                     });
 
-                     if (!first)
 
-                     {
 
-                         HandyControl.Controls.Growl.Success("GeekDesk快捷键注册成功(" + appData.AppConfig.HotkeyStr + ")!", "HotKeyGrowl");
 
-                     }
 
-                 }
 
-                 else
 
-                 {
 
-                 }
 
-             }
 
-             catch (Exception)
 
-             {
 
-                 if (first)
 
-                 {
 
-                     HandyControl.Controls.Growl.WarningGlobal("GeekDesk启动快捷键已被其它程序占用(" + appData.AppConfig.HotkeyStr + ")!");
 
-                 }
 
-                 else
 
-                 {
 
-                     HandyControl.Controls.Growl.Warning("GeekDesk启动快捷键已被其它程序占用(" + appData.AppConfig.HotkeyStr + ")!", "HotKeyGrowl");
 
-                 }
 
-             }
 
-         }
 
-         /// <summary>
 
-         /// 注册新建待办的热键
 
-         /// </summary>
 
-         public static void RegisterCreateToDoHotKey(bool first)
 
-         {
 
-             try
 
-             {
 
-                 if (appData.AppConfig.HotkeyModifiers != GlobalHotKey.HotkeyModifiers.None)
 
-                 {
 
-                     //加载完毕注册热键
 
-                     toDoHotKeyId = GlobalHotKey.RegisterHotKey(appData.AppConfig.ToDoHotkeyModifiers, appData.AppConfig.ToDoHotkey, () =>
 
-                     {
 
-                         if (MotionControl.hotkeyFinished)
 
-                         {
 
-                             ToDoWindow.ShowOrHide();
 
-                         }
 
-                     });
 
-                     if (!first)
 
-                     {
 
-                         HandyControl.Controls.Growl.Success("新建待办任务快捷键注册成功(" + appData.AppConfig.ToDoHotkeyStr + ")!", "HotKeyGrowl");
 
-                     }
 
-                 }
 
-             }
 
-             catch (Exception)
 
-             {
 
-                 if (first)
 
-                 {
 
-                     HandyControl.Controls.Growl.WarningGlobal("新建待办任务快捷键已被其它程序占用(" + appData.AppConfig.ToDoHotkeyStr + ")!");
 
-                 }
 
-                 else
 
-                 {
 
-                     HandyControl.Controls.Growl.Warning("新建待办任务快捷键已被其它程序占用(" + appData.AppConfig.ToDoHotkeyStr + ")!", "HotKeyGrowl");
 
-                 }
 
-             }
 
-         }
 
-         /// <summary>
 
-         /// 注册新建待办的热键
 
-         /// </summary>
 
-         public static void RegisterColorPickerHotKey(bool first)
 
-         {
 
-             try
 
-             {
 
-                 if (appData.AppConfig.HotkeyModifiers != GlobalHotKey.HotkeyModifiers.None)
 
-                 {
 
-                     //加载完毕注册热键
 
-                     colorPickerHotKeyId = GlobalHotKey.RegisterHotKey(appData.AppConfig.ColorPickerHotkeyModifiers, appData.AppConfig.ColorPickerHotkey, () =>
 
-                     {
 
-                         if (MotionControl.hotkeyFinished)
 
-                         {
 
-                             GlobalColorPickerWindow.CreateNoShow();
 
-                         }
 
-                     });
 
-                     if (!first)
 
-                     {
 
-                         HandyControl.Controls.Growl.Success("拾色器快捷键注册成功(" + appData.AppConfig.ColorPickerHotkeyStr + ")!", "HotKeyGrowl");
 
-                     }
 
-                 }
 
-             }
 
-             catch (Exception)
 
-             {
 
-                 if (first)
 
-                 {
 
-                     HandyControl.Controls.Growl.WarningGlobal("拾色器快捷键已被其它程序占用(" + appData.AppConfig.ColorPickerHotkeyStr + ")!");
 
-                 }
 
-                 else
 
-                 {
 
-                     HandyControl.Controls.Growl.Warning("拾色器快捷键已被其它程序占用(" + appData.AppConfig.ColorPickerHotkeyStr + ")!", "HotKeyGrowl");
 
-                 }
 
-             }
 
-         }
 
-         /// <summary>
 
-         /// 程序窗体拖动
 
-         /// </summary>
 
-         /// <param name="sender"></param>
 
-         /// <param name="e"></param>
 
-         private void DragMove(object sender, MouseEventArgs e)
 
-         {
 
-             if (e.LeftButton == MouseButtonState.Pressed)
 
-             {
 
-                 var windowMode = this.ResizeMode;
 
-                 if (this.ResizeMode != ResizeMode.NoResize)
 
-                 {
 
-                     this.ResizeMode = ResizeMode.NoResize;
 
-                 }
 
-                 this.UpdateLayout();
 
-                 /* 当点击拖拽区域的时候,让窗口跟着移动
 
-                 (When clicking the drag area, make the window follow) */
 
-                 DragMove();
 
-                 if (this.ResizeMode != windowMode)
 
-                 {
 
-                     this.ResizeMode = windowMode;
 
-                 }
 
-                 this.UpdateLayout();
 
-             }
 
-         }
 
-         /// <summary>
 
-         /// 关闭按钮单击事件
 
-         /// </summary>
 
-         /// <param name="sender"></param>
 
-         /// <param name="e"></param>
 
-         private void CloseButtonClick(object sender, RoutedEventArgs e)
 
-         {
 
-             HideApp();
 
-         }
 
-         ///// <summary>
 
-         ///// 左侧栏宽度改变 持久化
 
-         ///// </summary>
 
-         ///// <param name="sender"></param>
 
-         ///// <param name="e"></param>
 
-         //private void LeftCardResize(object sender, System.Windows.Controls.Primitives.DragCompletedEventArgs e)
 
-         //{
 
-         //    appData.AppConfig.MenuCardWidth = LeftColumn.Width.Value;
 
-         //}
 
-         /// <summary>
 
-         /// 右键任务栏图标 显示主面板
 
-         /// </summary>
 
-         /// <param name="sender"></param>
 
-         /// <param name="e"></param>
 
-         public void ShowApp(object sender, RoutedEventArgs e)
 
-         {
 
-             ShowApp();
 
-         }
 
-         public static void ShowApp()
 
-         {
 
-             //有全屏化应用则不显示
 
-             //if (CommonCode.IsPrimaryFullScreen())
 
-             //{
 
-             //    return;
 
-             //}
 
-             if (MarginHide.ON_HIDE)
 
-             {
 
-                 //修改贴边隐藏状态为未隐藏
 
-                 MarginHide.IS_HIDE = false;
 
-                 if (!CommonCode.MouseInWindow(mainWindow))
 
-                 {
 
-                     RunTimeStatus.MARGIN_HIDE_AND_OTHER_SHOW = true;
 
-                     MarginHide.WaitHide(3000);
 
-                 }
 
-             }
 
-             if (appData.AppConfig.FollowMouse)
 
-             {
 
-                 ShowWindowFollowMouse.Show(mainWindow, MousePosition.CENTER, 0, 0);
 
-             }
 
-             MainWindow.mainWindow.Activate();
 
-             mainWindow.Show();
 
-             //mainWindow.Visibility = Visibility.Visible;
 
-             if (appData.AppConfig.AppAnimation)
 
-             {
 
-                 appData.AppConfig.IsShow = true;
 
-             }
 
-             else
 
-             {
 
-                 appData.AppConfig.IsShow = null;
 
-                 //防止永远不显示界面
 
-                 if (mainWindow.Opacity < 1)
 
-                 {
 
-                     mainWindow.Opacity = 1;
 
-                 }
 
-             }
 
-             //FadeStoryBoard(1, (int)CommonEnum.WINDOW_ANIMATION_TIME, Visibility.Visible);
 
-             Keyboard.Focus(mainWindow);
 
-             if (RunTimeStatus.SHOW_MENU_PASSWORDBOX)
 
-             {
 
-                 mainWindow.RightCard.PDDialog.SetFocus();
 
-             }
 
-             else
 
-             {
 
-                 Keyboard.Focus(mainWindow.SearchBox);
 
-             }
 
-         }
 
-         public static void HideApp()
 
-         {
 
-             if (appData.AppConfig.AppAnimation)
 
-             {
 
-                 appData.AppConfig.IsShow = false;
 
-             }
 
-             else
 
-             {
 
-                 appData.AppConfig.IsShow = null;
 
-                 HideAppVis();
 
-             }
 
-         }
 
-         private static void HideAppVis()
 
-         {
 
-             //关闭锁定
 
-             RunTimeStatus.LOCK_APP_PANEL = false;
 
-             if (RunTimeStatus.SEARCH_BOX_SHOW)
 
-             {
 
-                 mainWindow.HidedSearchBox();
 
-             }
 
-             mainWindow.Visibility = Visibility.Collapsed;
 
-             //if (!MarginHide.IS_HIDE)
 
-             //{
 
-             //}
 
-             //else
 
-             //{
 
-             //    ShowApp();
 
-             //}
 
-         }
 
-         /// <summary>
 
-         /// 淡入淡出效果
 
-         /// </summary>
 
-         /// <param name="opacity"></param>
 
-         /// <param name="milliseconds"></param>
 
-         /// <param name="visibility"></param>
 
-         public static void FadeStoryBoard(int opacity, int milliseconds, Visibility visibility)
 
-         {
 
-             if (appData.AppConfig.AppAnimation)
 
-             {
 
-                 DoubleAnimation opacityAnimation = new DoubleAnimation
 
-                 {
 
-                     From = mainWindow.Opacity,
 
-                     To = opacity,
 
-                     Duration = new Duration(TimeSpan.FromMilliseconds(milliseconds))
 
-                 };
 
-                 opacityAnimation.Completed += (s, e) =>
 
-                 {
 
-                     mainWindow.BeginAnimation(OpacityProperty, null);
 
-                     if (visibility == Visibility.Visible)
 
-                     {
 
-                         mainWindow.Opacity = 1;
 
-                     }
 
-                     else
 
-                     {
 
-                         mainWindow.Opacity = 0;
 
-                         CommonCode.SortIconList();
 
-                     }
 
-                 };
 
-                 Timeline.SetDesiredFrameRate(opacityAnimation, 60);
 
-                 mainWindow.BeginAnimation(OpacityProperty, opacityAnimation);
 
-             }
 
-             else
 
-             {
 
-                 //防止关闭动画后 窗体仍是0透明度
 
-                 mainWindow.Opacity = 1;
 
-                 mainWindow.Visibility = visibility;
 
-                 if (visibility == Visibility.Collapsed)
 
-                 {
 
-                     CommonCode.SortIconList();
 
-                 }
 
-             }
 
-         }
 
-         /// <summary>
 
-         /// 图片图标单击事件
 
-         /// </summary>
 
-         /// <param name="sender"></param>
 
-         /// <param name="e"></param>
 
-         private void NotifyIcon_Click(object sender, RoutedEventArgs e)
 
-         {
 
-             if (CheckShouldShowApp())
 
-             {
 
-                 ShowApp();
 
-             }
 
-             else
 
-             {
 
-                 HideApp();
 
-             }
 
-         }
 
-         private static bool CheckShouldShowApp()
 
-         {
 
-             return mainWindow.Visibility == Visibility.Collapsed
 
-                 || mainWindow.Opacity == 0
 
-                 || MarginHide.IS_HIDE
 
-                 || !WindowUtil.WindowIsTop(mainWindow);
 
-         }
 
-         /// <summary>
 
-         /// 右键任务栏图标 设置
 
-         /// </summary>
 
-         /// <param name="sender"></param>
 
-         /// <param name="e"></param>
 
-         private void ConfigApp(object sender, RoutedEventArgs e)
 
-         {
 
-             ConfigWindow.Show(appData.AppConfig, this);
 
-         }
 
-         /// <summary>
 
-         /// 右键任务栏图标打开程序目录
 
-         /// </summary>
 
-         /// <param name="sender"></param>
 
-         /// <param name="e"></param>
 
-         private void OpenThisDir(object sender, RoutedEventArgs e)
 
-         {
 
-             Process p = new Process();
 
-             p.StartInfo.FileName = "Explorer.exe";
 
-             p.StartInfo.Arguments = "/e,/select," + Constants.APP_DIR + Constants.MY_NAME + ".exe";
 
-             p.Start();
 
-         }
 
-         /// <summary>
 
-         /// 设置图标
 
-         /// </summary>
 
-         /// <param name="sender"></param>
 
-         /// <param name="e"></param>
 
-         private void ConfigButtonClick(object sender, RoutedEventArgs e)
 
-         {
 
-             SettingMenus.IsOpen = true;
 
-         }
 
-         /// <summary>
 
-         /// 设置菜单点击
 
-         /// </summary>
 
-         /// <param name="sender"></param>
 
-         /// <param name="e"></param>
 
-         private void ConfigMenuClick(object sender, RoutedEventArgs e)
 
-         {
 
-             ConfigWindow.Show(appData.AppConfig, this);
 
-         }
 
-         /// <summary>
 
-         /// 待办任务
 
-         /// </summary>
 
-         /// <param name="sender"></param>
 
-         /// <param name="e"></param>
 
-         private void BacklogMenuClick(object sender, RoutedEventArgs e)
 
-         {
 
-             ToDoWindow.Show();
 
-         }
 
-         /// <summary>
 
-         /// 禁用设置按钮右键菜单
 
-         /// </summary>
 
-         /// <param name="sender"></param>
 
-         /// <param name="e"></param>
 
-         private void SettingButton_Initialized(object sender, EventArgs e)
 
-         {
 
-             SettingButton.ContextMenu = null;
 
-         }
 
-         private void AppWindowLostFocus()
 
-         {
 
-             if (appData.AppConfig.AppHideType == AppHideType.LOST_FOCUS
 
-                 && this.Opacity == 1 && !RunTimeStatus.LOCK_APP_PANEL)
 
-             {
 
-                 //如果开启了贴边隐藏 则窗体不贴边才隐藏窗口
 
-                 if (!appData.AppConfig.MarginHide || (appData.AppConfig.MarginHide && !MarginHide.IS_HIDE))
 
-                 {
 
-                     HideApp();
 
-                 }
 
-             }
 
-         }
 
-         private void Window_SizeChanged(object sender, SizeChangedEventArgs e)
 
-         {
 
-             if (this.DataContext != null)
 
-             {
 
-                 AppData appData = this.DataContext as AppData;
 
-                 appData.AppConfig.WindowWidth = this.Width;
 
-                 appData.AppConfig.WindowHeight = this.Height;
 
-             }
 
-         }
 
-         /// <summary>
 
-         /// 右键任务栏图标退出
 
-         /// </summary>
 
-         /// <param name="sender"></param>
 
-         /// <param name="e"></param>
 
-         private void ExitApp(object sender, RoutedEventArgs e)
 
-         {
 
-             if (appData.AppConfig.MouseMiddleShow || appData.AppConfig.SecondsWindow == true)
 
-             {
 
-                 MouseHookThread.Dispose();
 
-             }
 
-             if (appData.AppConfig.EnableEveryThing == true)
 
-             {
 
-                 EveryThingUtil.DisableEveryThing();
 
-             }
 
-             Application.Current.Shutdown();
 
-         }
 
-         /// <summary>
 
-         /// 重启
 
-         /// </summary>
 
-         /// <param name="sender"></param>
 
-         /// <param name="e"></param>
 
-         private void ReStartApp(object sender, RoutedEventArgs e)
 
-         {
 
-             if (appData.AppConfig.MouseMiddleShow || appData.AppConfig.SecondsWindow == true)
 
-             {
 
-                 MouseHookThread.Dispose();
 
-             }
 
-             Process p = new Process();
 
-             p.StartInfo.FileName = Constants.APP_DIR + "GeekDesk.exe";
 
-             p.StartInfo.WorkingDirectory = Constants.APP_DIR;
 
-             p.Start();
 
-             Application.Current.Shutdown();
 
-         }
 
-         /// <summary>
 
-         /// 关闭托盘图标
 
-         /// </summary>
 
-         /// <param name="sender"></param>
 
-         /// <param name="e"></param>
 
-         private void CloseBarIcon(object sender, RoutedEventArgs e)
 
-         {
 
-             appData.AppConfig.ShowBarIcon = false;
 
-         }
 
-         public void OnKeyDown(object sender, KeyEventArgs e)
 
-         {
 
-             //char c = (char)e.Key;
 
-             if (e.Key == Key.Escape)
 
-             {
 
-                 HideApp();
 
-             }
 
-             if (RunTimeStatus.SEARCH_BOX_SHOW && (e.Key == Key.Up
 
-                 || e.Key == Key.Down
 
-                 || e.Key == Key.Tab
 
-                 || e.Key == Key.Enter
 
-                 ))
 
-             {
 
-                 if (e.Key == Key.Down || e.Key == Key.Tab)
 
-                 {
 
-                     SearchResControl res = RightCard.VerticalCard.Content as SearchResControl;
 
-                     res.SearchListBoxIndexAdd();
 
-                 }
 
-                 else if (e.Key == Key.Up)
 
-                 {
 
-                     SearchResControl res = RightCard.VerticalCard.Content as SearchResControl;
 
-                     res.SearchListBoxIndexSub();
 
-                 }
 
-                 else if (e.Key == Key.Enter)
 
-                 {
 
-                     SearchResControl res = RightCard.VerticalCard.Content as SearchResControl;
 
-                     res.StartupSelectionItem();
 
-                 }
 
-             }
 
-         }
 
-         /// <summary>
 
-         /// 为了让修改菜单的textBox失去焦点
 
-         /// </summary>
 
-         /// <param name="sender"></param>
 
-         /// <param name="e"></param>
 
-         private void MainWindow_MouseDown(object sender, MouseButtonEventArgs e)
 
-         {
 
-             SearchBox.Focus();
 
-         }
 
-         /// <summary>
 
-         /// 鼠标进入后 
 
-         /// </summary>
 
-         /// <param name="sender"></param>
 
-         /// <param name="e"></param>
 
-         private void MainWindow_MouseEnter(object sender, MouseEventArgs e)
 
-         {
 
-             //防止延迟贴边隐藏
 
-             RunTimeStatus.MARGIN_HIDE_AND_OTHER_SHOW = false;
 
-         }
 
-         /// <summary>
 
-         /// 打开屏幕拾色器
 
-         /// </summary>
 
-         /// <param name="sender"></param>
 
-         /// <param name="e"></param>
 
-         private void ColorPicker(object sender, RoutedEventArgs e)
 
-         {
 
-             TaskbarContextMenu.IsOpen = false;
 
-             GlobalColorPickerWindow.CreateNoShow();
 
-         }
 
-         private void Window_GotFocus(object sender, RoutedEventArgs e)
 
-         {
 
-             // 如果没有在修改菜单 并且不是右键点击了面板
 
-             if (!RunTimeStatus.IS_MENU_EDIT
 
-                 && !RunTimeStatus.SHOW_RIGHT_BTN_MENU
 
-                 && !RunTimeStatus.APP_BTN_IS_DOWN)
 
-             {
 
-                 if (RunTimeStatus.SHOW_MENU_PASSWORDBOX)
 
-                 {
 
-                     //必须在其它文本框没有工作的时候才给密码框焦点
 
-                     RightCard.PDDialog.SetFocus();
 
-                 }
 
-                 else
 
-                 {
 
-                     //必须在其它文本框没有工作的时候才给搜索框焦点
 
-                     Keyboard.Focus(SearchBox);
 
-                 }
 
-             }
 
-         }
 
-         private void AppWindow_Deactivated(object sender, EventArgs e)
 
-         {
 
-             AppWindowLostFocus();
 
-         }
 
-         /// <summary>
 
-         /// 备份数据文件
 
-         /// </summary>
 
-         /// <param name="sender"></param>
 
-         /// <param name="e"></param>
 
-         [Obsolete]
 
-         private void BakDataFile(object sender, RoutedEventArgs e)
 
-         {
 
-             Thread t = new Thread(() =>
 
-             {
 
-                 CommonCode.BakAppData();
 
-             });
 
-             t.ApartmentState = ApartmentState.STA;
 
-             t.Start();
 
-         }
 
-         private void AppButton_PreviewMouseLeftButtonDown(object sender, MouseButtonEventArgs e)
 
-         {
 
-             //点击了面板
 
-             RunTimeStatus.APP_BTN_IS_DOWN = true;
 
-             new Thread(() =>
 
-             {
 
-                 Thread.Sleep(50);
 
-                 RunTimeStatus.APP_BTN_IS_DOWN = false;
 
-             }).Start();
 
-         }
 
-         private ICommand _hideCommand;
 
-         public ICommand HideCommand
 
-         {
 
-             get
 
-             {
 
-                 if (_hideCommand == null)
 
-                 {
 
-                     _hideCommand = new RelayCommand(
 
-                         p =>
 
-                         {
 
-                             return true;
 
-                         },
 
-                         p =>
 
-                         {
 
-                             HideAppVis();
 
-                         });
 
-                 }
 
-                 return _hideCommand;
 
-             }
 
-         }
 
-         protected override void OnSourceInitialized(EventArgs e)
 
-         {
 
-             base.OnSourceInitialized(e);
 
-             HwndSource hwndSource = PresentationSource.FromVisual(this) as HwndSource;
 
-             if (hwndSource != null)
 
-             {
 
-                 IntPtr handle = hwndSource.Handle;
 
-                 hwndSource.AddHook(new HwndSourceHook(WndProc));
 
-             }
 
-         }
 
-         IntPtr WndProc(IntPtr hwnd, int msg, IntPtr wParam, IntPtr lParam, ref bool handled)
 
-         {
 
-             if (msg == MessageUtil.WM_COPYDATA)
 
-             {
 
-                 MessageUtil.CopyDataStruct cds = (MessageUtil.CopyDataStruct)System.Runtime.InteropServices.Marshal.PtrToStructure(lParam, typeof(MessageUtil.CopyDataStruct));
 
-                 if ("ShowApp".Equals(cds.msg))
 
-                 {
 
-                     ShowApp();
 
-                 }
 
-             }
 
-             return hwnd;
 
-         }
 
-     }
 
- }
 
 
  |