10 references to RegistryStateNames
System.Windows.Forms (10)
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (10)
2325
key.SetValue(
RegistryStateNames
.AlphabeticalSort, PropertySort == PropertySort.Alphabetical ? "1" : "0");
2326
key.SetValue(
RegistryStateNames
.HelpVisible, HelpVisible ? "1" : "0");
2327
key.SetValue(
RegistryStateNames
.CommandsVisible, CommandsVisibleIfAvailable ? "1" : "0");
2328
key.SetValue(
RegistryStateNames
.CommentSizeRatio, _helpPaneSizeRatio.ToString(CultureInfo.InvariantCulture));
2329
key.SetValue(
RegistryStateNames
.CommandSizeRatio, _commandsPaneSizeRatio.ToString(CultureInfo.InvariantCulture));
2343
object value = key.GetValue(
RegistryStateNames
.AlphabeticalSort, "0");
2349
value = key.GetValue(
RegistryStateNames
.HelpVisible, "1");
2352
value = key.GetValue(
RegistryStateNames
.CommandsVisible, "0");
2357
value = key.GetValue(
RegistryStateNames
.CommentSizeRatio, "-1");
2368
value = key.GetValue(
RegistryStateNames
.CommandSizeRatio, "-1");