12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148 |
- 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.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 = 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();
- 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;
- 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()
- {
- 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);
- 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;
- }
- }
- /// <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;
- }
- class GuideInfo
- {
- private string title1;
- private string title2;
- private string guideText;
- public string Title1 { get; set; }
- public string Title2 { get; set; }
- public string GuideText { get; set; }
- }
- enum GuidePopOffect
- {
- TOP,
- INNER_TOP,
- LEFT,
- INNER_LEFT,
- CENTER,
- RIGHT,
- INNER_RIGHT,
- BOTTOM,
- INNER_BOTTOM
- }
- private ObservableCollection<GuideInfo> list = new ObservableCollection<GuideInfo>();
- private void Guide()
- {
- GuideInfo guideInfo = new GuideInfo
- {
- Title1 = "提示1",
- Title2 = "快捷方式创建",
- GuideText = "将文件拖动到这里自动创建快捷方式, 或者鼠标右键单击添加系统项目"
- };
- list.Add(guideInfo);
- guideInfo = new GuideInfo
- {
- Title1 = "提示2",
- Title2 = "快捷方式创建",
- GuideText = "将文件拖动到这里自动创建快捷方式, 或者鼠标右键单击添加系统项目"
- };
- list.Add(guideInfo);
- guideInfo = new GuideInfo
- {
- Title1 = "提示3",
- Title2 = "快捷方式创建",
- GuideText = "将文件拖动到这里自动创建快捷方式, 或者鼠标右键单击添加系统项目"
- };
- list.Add(guideInfo);
- GrayBorder.Visibility = Visibility.Visible;
- GuideSwitch(0);
- GuideCard.Visibility = Visibility.Visible;
- }
- private void GuideSwitch(int num)
- {
- switch (num)
- {
- default: //0 //右侧列表区域
- PreviewGuideBtn.Visibility = Visibility.Collapsed;
- NextGuideBtn.Content = "下一步";
- 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: //左侧菜单
- PreviewGuideBtn.Visibility = Visibility.Visible;
- NextGuideBtn.Content = "下一步";
- 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: //头部拖拽栏
- NextGuideBtn.Content = "完成";
- GrayBoderClip(0, 0, this.Width, 50,
- // 外部中下侧
- new Thickness(this.Width / 2 - GuideCard.ActualWidth / 2, 50, 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(GuideTitle1.Text.ToString().Substring(2)) - 1;
- int previewIndex = index - 1;
- GuideTitle1.Text = list[previewIndex].Title1;
- GuideTitle2.Text = list[previewIndex].Title2;
- GuideText.Text = list[previewIndex].GuideText;
- GuideSwitch(previewIndex);
- }
- private void NextGuideBtn_Click(object sender, RoutedEventArgs e)
- {
- if ("完成".Equals(NextGuideBtn.Content.ToString())) {
- GrayBorder.Visibility = Visibility.Collapsed;
- GuideCard.Visibility = Visibility.Collapsed;
- return;
- }
- int index = Convert.ToInt32(GuideTitle1.Text.ToString().Substring(2)) - 1;
- int nextIndex = index + 1;
- GuideTitle1.Text = list[nextIndex].Title1;
- GuideTitle2.Text = list[nextIndex].Title2;
- GuideText.Text = list[nextIndex].GuideText;
- GuideSwitch(nextIndex);
- }
- }
- }
|