• 创建桌面快捷方式的语法


    转载文章:创建桌面快捷方式语法:

    //实例化WshShell对象 
    WshShell shell = new WshShell();
    
    //通过该对象的 CreateShortcut 方法来创建 IWshShortcut 接口的实例对象 
    IWshShortcut shortcut = (IWshShortcut)shell.CreateShortcut(Environment.GetFolderPath(Environment.SpecialFolder.Desktop) + "//" + shortCutName + ".lnk");
    
    //设置快捷方式的目标所在的位置(源程序完整路径) 
    //shortcut.TargetPath = System.Reflection.Assembly.GetExecutingAssembly().Location;
    shortcut.TargetPath = Application.StartupPath + @"\" + exeName;
    
    //应用程序的工作目录 
    //当用户没有指定一个具体的目录时,快捷方式的目标应用程序将使用该属性所指定的目录来装载或保存文件。 
    shortcut.WorkingDirectory = System.Environment.CurrentDirectory;
    
    //目标应用程序窗口类型(1.Normal window普通窗口,3.Maximized最大化窗口,7.Minimized最小化) 
    shortcut.WindowStyle = 1;
    
    //快捷方式的描述 
    shortcut.Description = "位置:" + Application.StartupPath;
    
    //可以自定义快捷方式图标.(如果不设置,则将默认源文件图标.) 
    //shortcut.IconLocation = System.Environment.SystemDirectory + "\\" + "shell32.dll, 165"; 
    
    //设置应用程序的启动参数(如果应用程序支持的话) 
    //shortcut.Arguments = "/myword /d4s"; 
    
    //设置快捷键(如果有必要的话.) 
    shortcut.Hotkey = "CTRL+ALT+D"; 
    
     //保存快捷方式 
     shortcut.Save();
    因为相信,所以我去做了......
  • 相关阅读:
    ZOJ 3769 Diablo III(分组背包)
    HDU 1712 ACboy needs your help(分组背包入门题)
    POJ 1170 Shopping Offers(完全背包+哈希)
    HDU 4489 The King’s Ups and Downs
    [转] LINUX 三种网络连接模式
    [转] 软件架构
    [转] 支付宝系统架构内部剖析
    [转] pip镜像升级报警 -trust-host问题解决方案
    [转] Linux 查找文件内容
    [转] CentOS系统目录学习
  • 原文地址:https://www.cnblogs.com/jeffqing/p/3036656.html
Copyright © 2020-2023  润新知