您的位置:首页 > 编程语言 > C#

两个小知识:C#如何设置开机启动时自动执行程序|C# WinForm打开超链接

2011-05-09 08:47 1081 查看
通过在Microsft.Win32命名空间的Registry可以在注册表中设置注册表项中的名称/值对的值。
在注册表的"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run"中
存储应用程序名和路径可以实现程序的自启动。代码如下:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace AutoRun
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
//设置开机启动
private void btnSet_Click(object sender, EventArgs e)
{
Microsoft.Win32.Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run"
, Application.ProductName, Application.StartupPath + Application.ProductName);
}
//C# WinForm打开超链接
private void Form1_Load(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("iexplore.exe", "http://revit.5d6d.com");
}
}
}


源码:http://revit.5d6d.com/thread-896-1-1.html
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: