Exemplo n.º 1
0
 public static void SetInstallPath(string installPath)
 {
     RegistryManager.SetValue <string>(RegPathDefault, RegKeyInstallPath, installPath, RegistryValueKind.String);
 }
Exemplo n.º 2
0
 public static string GetInstallPath(string installPath)
 {
     return(RegistryManager.GetValue <string>(RegPathDefault, RegKeyInstallPath, RegistryValueKind.String));
 }
Exemplo n.º 3
0
 public static void SetSupportRTL(DWORD value)
 {
     RegistryManager.SetValue(RegPathDefault, RegKeyIsLanguageRTL, value, RegistryValueKind.DWord);
 }
Exemplo n.º 4
0
 public static void SetLanguage(string language)
 {
     RegistryManager.SetValue <string>(RegPathDefault, RegKeyLanguage, language, RegistryValueKind.String);
 }
Exemplo n.º 5
0
 public static string GetCommandArguments()
 {
     return(RegistryManager.GetValue <string>(RegPathDefault, RegKeyCmdArgs, RegistryValueKind.String));
 }
Exemplo n.º 6
0
 public static void SetCommandArguments(string args)
 {
     RegistryManager.SetValue <string>(RegPathDefault, RegKeyCmdArgs, args, RegistryValueKind.String);
 }
Exemplo n.º 7
0
 public static void CreateSettingRegistryKey()
 {
     RegistryManager.CreateKey(RegPathDefault);
 }