1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168 |
- 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.IO;
- using System.Runtime.CompilerServices;
- 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;
- using System.Windows.Media.Animation;
- using System.Windows.Media.Imaging;
- using System.Windows.Media.Media3D;
- 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;
- public static ToDoInfoWindow toDoInfoWindow;
- public static int hotKeyId = -1;
- public static int toDoHotKeyId = -1;
- public static int colorPickerHotKeyId = -1;
- public static MainWindow mainWindow;
-
- private static bool dataFileExist = true;
- public MainWindow()
- {
-
- //加载数据
- LoadData();
- InitializeComponent();
- //用于其他类访问
- mainWindow = this;
- //执行待办提醒
- ToDoTask.BackLogCheck();
- ////实例化隐藏 Hide类,进行时间timer设置
- MarginHide.ReadyHide(this);
- if (appData.AppConfig.MarginHide)
- {
- MarginHide.StartHide();
- }
- }
- private void Window_SourceInitialized(object sender, EventArgs e)
- {
- try
- {
- //禁用窗口最大化
- WindowUtil.DisableMaxWindow(this);
- }
- catch (Exception) { }
- }
- /// <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();
- if (string.IsNullOrEmpty(inputText))
- {
- RightCard.Loading_RightCard.Visibility = Visibility.Collapsed;
- return;
- }
- 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);
- }
- }
- int geekDeskCount = 0;
- //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))
- {
- geekDeskCount++;
- resList.Add(icon);
- }
- }
- }
- this.Dispatcher.Invoke(() =>
- {
- if (appData.AppConfig.EnableEveryThing == true)
- {
- int everythingTotal = Convert.ToInt32(EveryThingUtil.Everything_GetNumResults());
- GeekDeskSearchTotal.Text = Convert.ToString(geekDeskCount);
- EverythingSearchCount.Text = Convert.ToString(resList.Count - geekDeskCount);
- EverythingSearchTotal.Text = Convert.ToString(everythingTotal + geekDeskCount);
- 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;
- RunTimeStatus.SEARCH_BOX_HIDED_300 = false;
- new Thread(() =>
- {
- Thread.Sleep(300);
- RunTimeStatus.SEARCH_BOX_HIDED_300 = true;
- }).Start();
- 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;
- SearchResContainer.Visibility = Visibility.Collapsed;
- RightCard.VerticalCard.Content = null;
- RightCard.VisibilitySearchCard(Visibility.Collapsed);
- });
- }).Start();
- }
- /// <summary>
- /// 加载缓存数据
- /// </summary>
- private void LoadData()
- {
- //判断数据文件是否存在 如果不存在那么是第一次打开程序
- dataFileExist = File.Exists(Constants.DATA_FILE_PATH);
- appData = CommonCode.GetAppDataByFile();
- 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);
- if (!dataFileExist)
- {
- Guide();
- }
- }
- /// <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)
- {
- DragMove();
- }
- }
- /// <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;
- }
- if (guideRun)
- {
- Guide();
- }
- }
- /// <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;
- }
- #region 新手引导
- private int guideIndex = 0;
- private bool guideRun = false;
- private void Guide()
- {
- try
- {
- guideRun = true;
- //防止影响主程序进程
- if (CheckShouldShowApp())
- {
- ShowApp();
- }
- GrayBorder.Visibility = Visibility.Visible;
- GuideSwitch(guideIndex);
- GuideCard.Visibility = Visibility.Visible;
- }
- catch (Exception) { guideRun = false; }
- }
- private void GuideSwitch(int index)
- {
- guideIndex = index;
- GuideNum.Text = Convert.ToString(index + 1);
- GuideTitle1.Text = GuideInfoList.mainWindowGuideList[index].Title1;
- GuideTitle2.Text = GuideInfoList.mainWindowGuideList[index].Title2;
- GuideText.Text = GuideInfoList.mainWindowGuideList[index].GuideText;
- if (index == 0)
- {
- PreviewGuideBtn.Visibility = Visibility.Collapsed;
- NextGuideBtn.Content = "下一步";
- } else if (index > 0 && index < GuideInfoList.mainWindowGuideList.Count - 1)
- {
- PreviewGuideBtn.Visibility = Visibility.Visible;
- NextGuideBtn.Content = "下一步";
- } else
- {
- NextGuideBtn.Content = "完成";
- }
- switch (index)
- {
- default: //0 //右侧列表区域
-
- Point point = RightCard.TransformToAncestor(this).Transform(new Point(0, 0));
- //内部中上
- GrayBoderClip(point.X, point.Y, RightCard.ActualWidth, RightCard.ActualHeight,
- new Thickness(point.X + RightCard.ActualWidth / 2 - GuideCard.ActualWidth / 2, point.Y, 0, 0));
- break;
- case 1: //左侧菜单
- Point leftCardPoint = LeftCard.TransformToAncestor(this).Transform(new Point(0, 0));
- GrayBoderClip(leftCardPoint.X , leftCardPoint.Y , LeftCard.ActualWidth, LeftCard.ActualHeight,
- // 外部中下侧
- new Thickness(leftCardPoint.X + LeftCard.ActualWidth,
- leftCardPoint.Y + LeftCard.ActualHeight / 2 - GuideCard.ActualHeight / 2, 0, 0));
- break;
- case 2: //头部拖拽栏
- GrayBoderClip(0, 0, this.Width, 50,
- // 外部中下侧
- new Thickness(this.Width / 2 - GuideCard.ActualWidth / 2, 50, 0, 0));
- break;
- case 3:
- Point mainBtnPoint = MainBtnPanel.TransformToAncestor(this).Transform(new Point(0, 0));
- GrayBoderClip(mainBtnPoint.X, mainBtnPoint.Y, MainBtnPanel.ActualWidth, MainBtnPanel.ActualHeight,
- // 外部左下侧
- new Thickness(mainBtnPoint.X - GuideCard.Width,
- mainBtnPoint.Y, 0, 0));
- break;
- }
- }
- private void GrayBoderClip(double x, double y, double w, double h, Thickness margin)
- {
- PathGeometry borGeometry = new PathGeometry();
- RectangleGeometry rg = new RectangleGeometry();
- rg.Rect = new Rect(0, 0, this.Width, this.Height);
- borGeometry = Geometry.Combine(borGeometry, rg, GeometryCombineMode.Union, null);
- GrayBorder.Clip = borGeometry;
- RectangleGeometry rg1 = new RectangleGeometry();
- rg1.Rect = new Rect(x - 20, y - 20, w, h);
- borGeometry = Geometry.Combine(borGeometry, rg1, GeometryCombineMode.Exclude, null);
- GuideCard.Margin = margin;
- GrayBorder.Clip = borGeometry;
- }
- private void PreviewGuideBtn_Click(object sender, RoutedEventArgs e)
- {
- int index = Convert.ToInt32(GuideNum.Text.ToString()) - 1;
- int previewIndex = index - 1;
- GuideSwitch(previewIndex);
- }
- private void NextGuideBtn_Click(object sender, RoutedEventArgs e)
- {
- if ("完成".Equals(NextGuideBtn.Content.ToString())) {
- GrayBorder.Visibility = Visibility.Collapsed;
- GuideCard.Visibility = Visibility.Collapsed;
- guideIndex = 0;
- guideRun = false;
- return;
- }
- int index = Convert.ToInt32(GuideNum.Text.ToString()) - 1;
- int nextIndex = index + 1;
- GuideSwitch(nextIndex);
- }
- #endregion
- private void Guide_Click(object sender, RoutedEventArgs e)
- {
- Guide();
- }
- }
- }
|