1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
using System; using System.Windows.Forms; namespace wshao { public partial class wshao : Form { public wshao () { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { System.Diagnostics.Process.Start("http://www.skyfox.org"); Environment.Exit(0); } } } |
转载请注明:天狐博客 » C#编写网站的桌面快捷方式程序(无控制台)