| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525 | using DraggAnimatedPanelExample;using GeekDesk.Constant;using GeekDesk.Control.Other;using GeekDesk.Control.Windows;using GeekDesk.Util;using GeekDesk.ViewModel;using HandyControl.Controls;using System;using System.Collections.ObjectModel;using System.Diagnostics;using System.IO;using System.Text.RegularExpressions;using System.Threading;using System.Windows;using System.Windows.Controls;using System.Windows.Input;using System.Windows.Media.Animation;using System.Windows.Media.Imaging;namespace GeekDesk.Control.UserControls.PannelCard{    /// <summary>    /// RightCardControl.xaml 的交互逻辑    /// </summary>    public partial class RightCardControl : UserControl    {        private AppData appData = MainWindow.appData;        public RightCardControl()        {            InitializeComponent();        }        #region 图标拖动        DelegateCommand<int[]> _swap;        public DelegateCommand<int[]> SwapCommand        {            get            {                if (_swap == null)                    _swap = new DelegateCommand<int[]>(                        (indexes) =>                        {                            int fromS = indexes[0];                            int to = indexes[1];                            ObservableCollection<IconInfo> iconList = appData.MenuList[appData.AppConfig.SelectedMenuIndex].IconList;                            var elementSource = iconList[to];                            var dragged = iconList[fromS];                            iconList.Remove(dragged);                            iconList.Insert(to, dragged);                        }                    );                return _swap;            }        }        #endregion 图标拖动        /// <summary>        /// 图标点击事件        /// </summary>        /// <param name="sender"></param>        /// <param name="e"></param>        private void IconClick(object sender, MouseButtonEventArgs e)        {            if (appData.AppConfig.DoubleOpen && e.ClickCount >= 2)            {                IconInfo icon = (IconInfo)((SimpleStackPanel)sender).Tag;                if (icon.AdminStartUp)                {                    StartIconApp(icon, IconStartType.ADMIN_STARTUP);                }                else                {                    StartIconApp(icon, IconStartType.DEFAULT_STARTUP);                }            }            else if (!appData.AppConfig.DoubleOpen && e.ClickCount == 1)            {                IconInfo icon = (IconInfo)((SimpleStackPanel)sender).Tag;                if (icon.AdminStartUp)                {                    StartIconApp(icon, IconStartType.ADMIN_STARTUP);                }                else                {                    StartIconApp(icon, IconStartType.DEFAULT_STARTUP);                }            }        }        /// <summary>        /// 管理员方式启动        /// </summary>        /// <param name="sender"></param>        /// <param name="e"></param>        private void IconAdminStart(object sender, RoutedEventArgs e)        {            IconInfo icon = (IconInfo)((MenuItem)sender).Tag;            StartIconApp(icon, IconStartType.ADMIN_STARTUP);        }        /// <summary>        /// 打开文件所在位置        /// </summary>        /// <param name="sender"></param>        /// <param name="e"></param>        private void ShowInExplore(object sender, RoutedEventArgs e)        {            IconInfo icon = (IconInfo)((MenuItem)sender).Tag;            StartIconApp(icon, IconStartType.SHOW_IN_EXPLORE);        }        private void StartIconApp(IconInfo icon, IconStartType type)        {            try            {                using (Process p = new Process())                {                    p.StartInfo.UseShellExecute = true;                    string startArg = icon.StartArg;                    if (startArg != null && Constants.SYSTEM_ICONS != null                        && Constants.SYSTEM_ICONS.ContainsKey(startArg))                    {                        StartSystemApp(startArg, type);                    }                    else                    {                        p.StartInfo.FileName = icon.Path;                        //p.StartInfo.CreateNoWindow = false; //设置显示窗口                        //p.StartInfo.UseShellExecute = false;//不使用操作系统外壳程序启动进程                        //p.StartInfo.ErrorDialog = false;                        if (!StringUtil.IsEmpty(startArg))                        {                            p.StartInfo.Arguments = startArg;                        }                        if (icon.IconType == IconType.OTHER)                        {                            if (!File.Exists(icon.Path) && !Directory.Exists(icon.Path))                            {                                HandyControl.Controls.Growl.WarningGlobal("程序启动失败(文件路径不存在或已删除)!");                                return;                            }                            p.StartInfo.WorkingDirectory = icon.Path.Substring(0, icon.Path.LastIndexOf("\\"));                            switch (type)                            {                                case IconStartType.ADMIN_STARTUP:                                    //p.StartInfo.Arguments = "1";//启动参数                                    p.StartInfo.Verb = "runas";                                    if (appData.AppConfig.AppHideType == AppHideType.START_EXE)                                    {                                        //如果开启了贴边隐藏 则窗体不贴边才隐藏窗口                                        if (appData.AppConfig.MarginHide)                                        {                                            if (!MarginHide.IS_HIDE)                                            {                                                MainWindow.HideApp();                                            }                                        }                                        else                                        {                                            MainWindow.HideApp();                                        }                                    }                                    break;// c#好像不能case穿透                                case IconStartType.DEFAULT_STARTUP:                                    if (appData.AppConfig.AppHideType == AppHideType.START_EXE)                                    {                                        //如果开启了贴边隐藏 则窗体不贴边才隐藏窗口                                        if (appData.AppConfig.MarginHide)                                        {                                            if (!MarginHide.IS_HIDE)                                            {                                                MainWindow.HideApp();                                            }                                        }                                        else                                        {                                            MainWindow.HideApp();                                        }                                    }                                    break;                                case IconStartType.SHOW_IN_EXPLORE:                                    p.StartInfo.FileName = "Explorer.exe";                                    p.StartInfo.Arguments = "/e,/select," + icon.Path;                                    break;                            }                        }                        else                        {                            if (appData.AppConfig.AppHideType == AppHideType.START_EXE)                            {                                //如果开启了贴边隐藏 则窗体不贴边才隐藏窗口                                if (appData.AppConfig.MarginHide)                                {                                    if (!MarginHide.IS_HIDE)                                    {                                        MainWindow.HideApp();                                    }                                }                                else                                {                                    MainWindow.HideApp();                                }                            }                        }                        icon.Count++;                        p.Start();                    }                }            }            catch (Exception e)            {                HandyControl.Controls.Growl.WarningGlobal("程序启动失败(不支持的启动方式)!");                LogUtil.WriteErrorLog(e, "程序启动失败:path=" + icon.Path + ",type=" + type);            }        }        private void StartSystemApp(string startArg, IconStartType type)        {            if (type == IconStartType.SHOW_IN_EXPLORE)            {                Growl.WarningGlobal("系统项目不支持打开文件位置操作!");                return;            }            switch (startArg)            {                case "Calculator":                    Process.Start("calc.exe");                    break;                case "Computer":                    Process.Start("explorer.exe");                    break;                case "GroupPolicy":                    Process.Start("gpedit.msc");                    break;                case "Notepad":                    Process.Start("notepad");                    break;                case "Network":                    Process.Start("ncpa.cpl");                    break;                case "RecycleBin":                    Process.Start("shell:RecycleBinFolder");                    break;                case "Registry":                    Process.Start("regedit.exe");                    break;                case "Mstsc":                    if (type == IconStartType.ADMIN_STARTUP)                    {                        Process.Start("mstsc", "-admin");                    }                    else                    {                        Process.Start("mstsc");                    }                    break;                case "Control":                    Process.Start("Control");                    break;                case "CMD":                    if (type == IconStartType.ADMIN_STARTUP)                    {                        using (Process process = new Process())                        {                            process.StartInfo.FileName = "cmd.exe";                            process.StartInfo.Verb = "runas";                            process.Start();                        }                    }                    else                    {                        Process.Start("cmd");                    }                    break;            }            //如果开启了贴边隐藏 则窗体不贴边才隐藏窗口            if (appData.AppConfig.MarginHide)            {                if (!MarginHide.IS_HIDE)                {                    MainWindow.HideApp();                }            }            else            {                MainWindow.HideApp();            }        }        /// <summary>        /// 拖动添加项目        /// </summary>        /// <param name="sender"></param>        /// <param name="e"></param>        private void Wrap_Drop(object sender, DragEventArgs e)        {            Array dropObject = (System.Array)e.Data.GetData(DataFormats.FileDrop);            if (dropObject == null) return;            foreach (object obj in dropObject)            {                string path = (string)obj;                IconInfo iconInfo = CommonCode.GetIconInfoByPath(path);                MainWindow.appData.MenuList[appData.AppConfig.SelectedMenuIndex].IconList.Add(iconInfo);                CommonCode.SaveAppData(MainWindow.appData);            }        }        /// <summary>        /// 从列表删除图标        /// </summary>        /// <param name="sender"></param>        /// <param name="e"></param>        private void RemoveIcon(object sender, RoutedEventArgs e)        {            appData.MenuList[appData.AppConfig.SelectedMenuIndex].IconList.Remove((IconInfo)((MenuItem)sender).Tag);        }        private void SystemContextMenu(object sender, RoutedEventArgs e)        {            IconInfo icon = (IconInfo)((MenuItem)sender).Tag;            DirectoryInfo[] folders = new DirectoryInfo[1];            folders[0] = new DirectoryInfo(icon.Path);            ShellContextMenu scm = new ShellContextMenu();            System.Drawing.Point p = System.Windows.Forms.Cursor.Position;            p.X -= 80;            p.Y -= 80;            scm.ShowContextMenu(folders, p);        }        /// <summary>        /// 弹出Icon属性修改面板        /// </summary>        /// <param name="sender"></param>        /// <param name="e"></param>        private void PropertyConfig(object sender, RoutedEventArgs e)        {            IconInfo info = (IconInfo)((MenuItem)sender).Tag;            switch (info.IconType)            {                case IconType.URL:                    IconInfoUrlDialog urlDialog = new IconInfoUrlDialog(info);                    urlDialog.dialog = HandyControl.Controls.Dialog.Show(urlDialog, "IconInfoDialog");                    break;                default:                    IconInfoDialog dialog = new IconInfoDialog(info);                    dialog.dialog = HandyControl.Controls.Dialog.Show(dialog, "IconInfoDialog");                    break;            }        }        private void StackPanel_MouseEnter(object sender, MouseEventArgs e)        {            double width = appData.AppConfig.ImageWidth;            double height = appData.AppConfig.ImageHeight;            width += width * 0.15;            height += height * 0.15;            ImgStoryBoard(sender, (int)width, (int)height, 1, true);        }        private void StackPanel_MouseLeave(object sender, MouseEventArgs e)        {            ImgStoryBoard(sender, appData.AppConfig.ImageWidth, appData.AppConfig.ImageHeight, 220);        }        private void ImgStoryBoard(object sender, int height, int width, int milliseconds, bool checkRmStoryboard = false)        {            if (appData.AppConfig.PMModel) return;            Panel sp = sender as Panel;            DependencyObject dos = sp.Parent;            Image img = sp.Children[0] as Image;            double afterHeight = img.Height;            double afterWidth = img.Width;            //动画定义            Storyboard myStoryboard = new Storyboard();            DoubleAnimation heightAnimation = new DoubleAnimation            {                From = afterHeight,                To = height,                Duration = new Duration(TimeSpan.FromMilliseconds(milliseconds))            };            DoubleAnimation widthAnimation = new DoubleAnimation            {                From = afterWidth,                To = width,                Duration = new Duration(TimeSpan.FromMilliseconds(milliseconds))            };            Timeline.SetDesiredFrameRate(heightAnimation, 60);            Timeline.SetDesiredFrameRate(widthAnimation, 60);            Storyboard.SetTarget(widthAnimation, img);            Storyboard.SetTargetProperty(widthAnimation, new PropertyPath("Width"));            Storyboard.SetTarget(heightAnimation, img);            Storyboard.SetTargetProperty(heightAnimation, new PropertyPath("Height"));            myStoryboard.Children.Add(heightAnimation);            myStoryboard.Children.Add(widthAnimation);            CheckRemoveStoryboard crs = new CheckRemoveStoryboard            {                sb = myStoryboard,                sp = sp,                heightAnimation = heightAnimation,                widthAnimation = widthAnimation,                img = img,                isMouseOver = !checkRmStoryboard            };            heightAnimation.Completed += (s, e) =>            {                if (checkRmStoryboard)                {                    ThreadStart ts = new ThreadStart(crs.Remove);                    System.Threading.Thread t = new System.Threading.Thread(ts);                    t.Start();                }                else                {                    img.BeginAnimation(WidthProperty, null);                    img.BeginAnimation(HeightProperty, null);                }            };            img.BeginAnimation(WidthProperty, widthAnimation);            img.BeginAnimation(HeightProperty, heightAnimation);            //myStoryboard.Completed += (s, e) =>            //{            //    if (checkRmStoryboard || true)            //    {            //        ThreadStart ts = new ThreadStart(crs.Remove);            //        System.Threading.Thread t = new System.Threading.Thread(ts);            //        t.Start();            //    }            //    else            //    {            //        myStoryboard.Remove();            //    }            //};            //myStoryboard.Begin();        }        private class CheckRemoveStoryboard        {            public Storyboard sb;            public Panel sp;            public Image img;            public DoubleAnimation heightAnimation;            public DoubleAnimation widthAnimation;            public bool isMouseOver;            public void Remove()            {                while (true)                {                    if (sp.IsMouseOver == isMouseOver)                    {                        App.Current.Dispatcher.Invoke((Action)(() =>                        {                            img.BeginAnimation(WidthProperty, null);                            img.BeginAnimation(HeightProperty, null);                            //heightAnimation.FillBehavior = FillBehavior.Stop;                            //widthAnimation.FillBehavior = FillBehavior.Stop;                        }));                        return;                    }                    else                    {                        System.Threading.Thread.Sleep(500);                    }                }            }        }        public void RemoveSB(Object sb)        {            Storyboard sb2 = sb as Storyboard;            System.Threading.Thread.Sleep(500);            sb2.Remove();        }        /// <summary>        /// 添加URL项目        /// </summary>        /// <param name="sender"></param>        /// <param name="e"></param>        private void AddUrlIcon(object sender, RoutedEventArgs e)        {            IconInfoUrlDialog urlDialog = new IconInfoUrlDialog();            urlDialog.dialog = HandyControl.Controls.Dialog.Show(urlDialog, "IconInfoDialog");        }        /// <summary>        /// 添加系统项目        /// </summary>        /// <param name="sender"></param>        /// <param name="e"></param>        private void AddSystemIcon(object sender, RoutedEventArgs e)        {            SystemItemWindow.Show();        }    }}
 |