10 references to RegistryStateNames
System.Windows.Forms (10)
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (10)
2318
key.SetValue(
RegistryStateNames
.AlphabeticalSort, PropertySort == PropertySort.Alphabetical ? "1" : "0");
2319
key.SetValue(
RegistryStateNames
.HelpVisible, HelpVisible ? "1" : "0");
2320
key.SetValue(
RegistryStateNames
.CommandsVisible, CommandsVisibleIfAvailable ? "1" : "0");
2321
key.SetValue(
RegistryStateNames
.CommentSizeRatio, _helpPaneSizeRatio.ToString(CultureInfo.InvariantCulture));
2322
key.SetValue(
RegistryStateNames
.CommandSizeRatio, _commandsPaneSizeRatio.ToString(CultureInfo.InvariantCulture));
2336
object value = key.GetValue(
RegistryStateNames
.AlphabeticalSort, "0");
2342
value = key.GetValue(
RegistryStateNames
.HelpVisible, "1");
2345
value = key.GetValue(
RegistryStateNames
.CommandsVisible, "0");
2350
value = key.GetValue(
RegistryStateNames
.CommentSizeRatio, "-1");
2361
value = key.GetValue(
RegistryStateNames
.CommandSizeRatio, "-1");