我正在编写一个 win 应用程序,现在我想为我的应用程序进行设置,我的代码是:
Microsoft.Win32.RegistryKey rk = Microsoft.Win32.Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Microsoft\Windows\CurrentVersion\Run");
rk.SetValue("MyAppName", @"C:\WhereMyAppIs\MyApp.exe");
现在如何从安装程序中获取路径来设置它???谢谢。