在Windows Mobile创建桌面快捷方式
2007-11-24 15:52 ruinet 阅读(11068) 评论(13) 编辑 收藏 举报而Windows Mobile 中怎么样创建快捷方式的呢?复制一个Windows Mobile中的一个快捷方式,然后把它拖到记事本中你就会发现它的结构组成了。
如:37#"\Windows\桌面\PDA.exe.lnk"这是我拖拽一个快捷方式到记事本中出现的
看到里这个就很简单,比创建Windows 快捷方式简单多了。
Code参考:
///<summary>
///创建快捷方式
///</summary>
///<param name="ExePath">exe程序所在路径</param>
///<param name="where">快捷方式的路径</param>
public static void CreateShortcut(string ExePath,string where)
{
try
{
if (!System.IO.File.Exists(where))
{
System.IO.StreamWriter objWriter = System.IO.File.CreateText(where);
objWriter.WriteLine(string.Format("37#""{0}""", ExePath));
objWriter.Close();
}
}
finally
{
where = null;
ExePath = null;
}
}
string where = @"\Windows\桌面\PDA.exe.lnk";
string ExePath=Assembly.GetExecutingAssembly().GetModules()[0].FullyQualifiedName;
CreateShortcut(ExePath,where);