Replies: 3 comments 2 replies
-
any suggestions? |
Beta Was this translation helpful? Give feedback.
0 replies
-
It works fine for me. Did you get an exception or something? This is my snippet: RegistryKey registry = Registry.CurrentUser.CreateSubKey(@"Software\MySoftware");
registry.SetValue("Key", 1, RegistryValueKind.DWord);
registry.Flush();
registry.Close(); |
Beta Was this translation helpful? Give feedback.
2 replies
-
I have found an issue, I cannot find the name I wrote. The old name was ProxyEnable, but I have changed it to ProxyEmpower_1. I cannot find this name in regedit.exe search anymore 🤨 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Description
Is it not allowed to manipulate the registry with maui?
Steps to Reproduce
RegistryKey registry = xxx(); registry.SetValue("Key", 1,RegistryValueKind.DWord); //registry.Flush(); registry.Close();
Beta Was this translation helpful? Give feedback.
All reactions