码迷,mamicode.com
首页 > Windows程序 > 详细

winform创建快捷方式

时间:2014-06-16 13:51:54      阅读:240      评论:0      收藏:0      [点我收藏+]

标签:des   winform   style   class   blog   code   

    /// <summary>
    /// 创建快捷方式
    /// </summary>
  public  class Lnk
    {
        /// <summary>
        /// 创建快捷方式的方法
        /// </summary>
        /// <param name="FolderPath">快捷方式存放的位置</param>
        /// <param name="PathLink">指向连接的文件</param>
        /// <param name="LnkName">快捷方式的文件</param>
        /// <param name="LnkNote">快捷方式的备注</param>
        /// <param name="IconLocationPath">指定快捷方式的图标</param>
        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创建快捷方式,布布扣,bubuko.com

winform创建快捷方式

标签:des   winform   style   class   blog   code   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!