两个小知识:C#如何设置开机启动时自动执行程序|C# WinForm打开超链接
通过在Microsft.Win32命名空间的Registry可以在注册表中设置注册表项中的名称/值对的值。
在注册表的"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run"中
存储应用程序名和路径可以实现程序的自启动。代码如下:
源码:http://revit.5d6d.com/thread-896-1-1.html
在注册表的"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");
}
}
}
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
我这个博客废弃不用了,今天想寻找外链的时候,突然想到这个博客权重很高。
有需要免费外链的,留言即可,我准备把这个博客变成免费的友情链接站点。