本文介绍了机器启动表格的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想显示PC启动或重新启动时应打开的表单.
任何有代码的人都将其转发.
预先感谢.

解决方案


System.Win32名称空间中的RegistryKey 类.以下代码显示了如何执行此操作:

 RegistryKey rk = Registry.CurrentUser;
RegistryKey StartupPath;
StartupPath = rk.OpenSubKey( @"  Software \ Microsoft \ Windows \ CurrentVersion \ Run" ,为真);
如果(StartupPath.GetValue("  ProjectName" )== )
{
    StartupPath.SetValue("  ProjectName" ,Application.ExecutablePath,RegistryValueKind.ExpandString);
} 



注意:RegistryKeySystem.Win32名称空间中,因此请不要忘记导入它.

请参阅:在启动时运行程序 [ ^ ]


I want to show the form that should get open when pc get started or restarted.
any one having code pls forward it.
Thanks in advance.

解决方案




这篇关于机器启动表格的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-03 04:51