Files
community/Ink Canvas/MainWindow_cs/MW_AutoStart.cs
T

50 lines
1.8 KiB
C#
Raw Normal View History

2025-08-31 09:54:13 +08:00
using System;
2025-05-25 09:29:48 +08:00
using System.Windows;
2025-08-31 09:54:13 +08:00
using IWshRuntimeLibrary;
2025-07-28 14:40:44 +08:00
using Application = System.Windows.Forms.Application;
using File = System.IO.File;
2025-05-25 09:29:48 +08:00
2025-08-03 16:46:33 +08:00
namespace Ink_Canvas
{
public partial class MainWindow : Window
{
public static bool StartAutomaticallyCreate(string exeName)
{
try
{
2025-05-25 09:29:48 +08:00
var shell = new WshShell();
var shortcut = (IWshShortcut)shell.CreateShortcut(
Environment.GetFolderPath(Environment.SpecialFolder.Startup) + "\\" + exeName + ".lnk");
//设置快捷方式的目标所在的位置(源程序完整路径)
2025-07-28 14:40:44 +08:00
shortcut.TargetPath = Application.ExecutablePath;
2025-05-25 09:29:48 +08:00
//应用程序的工作目录
//当用户没有指定一个具体的目录时,快捷方式的目标应用程序将使用该属性所指定的目录来装载或保存文件。
shortcut.WorkingDirectory = Environment.CurrentDirectory;
//目标应用程序窗口类型(1.Normal window普通窗口,3.Maximized最大化窗口,7.Minimized最小化)
shortcut.WindowStyle = 1;
//快捷方式的描述
shortcut.Description = exeName + "_Ink";
//设置快捷键(如果有必要的话.)
//shortcut.Hotkey = "CTRL+ALT+D";
shortcut.Save();
return true;
}
catch (Exception) { }
return false;
}
2025-08-03 16:46:33 +08:00
public static bool StartAutomaticallyDel(string exeName)
{
try
{
2025-07-28 14:40:44 +08:00
File.Delete(Environment.GetFolderPath(Environment.SpecialFolder.Startup) + "\\" + exeName +
".lnk");
2025-05-25 09:29:48 +08:00
return true;
}
catch (Exception) { }
return false;
}
}
}