winform创建快捷方式

2020-12-13 02:56

阅读:588

标签:des   winform   style   class   blog   code   

    /// 
    /// 创建快捷方式
    /// 
  public  class Lnk
    {
        /// 
        /// 创建快捷方式的方法
        /// 
        /// 快捷方式存放的位置
        /// 指向连接的文件
        /// 快捷方式的文件
        /// 快捷方式的备注
        /// 指定快捷方式的图标
        public void CreateShortcutLnk(string FolderPath, string PathLink, string LnkName, string LnkNote, string IconLocationPath)
        {
            try
            {
                WshShell shell = new WshShell();
                IWshShortcut Shortcut = (IWshShortcut)shell.CreateShortcut(FolderPath + "\\" + LnkName + ".lnk");
                Shortcut.TargetPath = PathLink;
                Shortcut.WindowStyle = 1;
                Shortcut.Description = LnkNote;
                Shortcut.IconLocation = IconLocationPath;
                Shortcut.Save();
            }
            catch
            {
                throw new Exception("出错了,快捷方式未能创建。");
            }
        }
    }
Lnk CreateLnk = new MagicLibrary.Shortcuts.Lnk();

            CreateLnk.CreateShortcutLnk(Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory),
                Application.ExecutablePath, "快捷方式", "我的软件", Application.ExecutablePath);

 

winform创建快捷方式,搜素材,soscw.com

winform创建快捷方式

标签:des   winform   style   class   blog   code   

原文地址:http://www.cnblogs.com/mengxingxinqing/p/3790104.html


评论


亲,登录后才可以留言!