10 references to RegistryStateNames
System.Windows.Forms (10)
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (10)
2270key.SetValue(RegistryStateNames.AlphabeticalSort, PropertySort == PropertySort.Alphabetical ? "1" : "0"); 2271key.SetValue(RegistryStateNames.HelpVisible, HelpVisible ? "1" : "0"); 2272key.SetValue(RegistryStateNames.CommandsVisible, CommandsVisibleIfAvailable ? "1" : "0"); 2273key.SetValue(RegistryStateNames.CommentSizeRatio, _helpPaneSizeRatio.ToString(CultureInfo.InvariantCulture)); 2274key.SetValue(RegistryStateNames.CommandSizeRatio, _commandsPaneSizeRatio.ToString(CultureInfo.InvariantCulture)); 2288object value = key.GetValue(RegistryStateNames.AlphabeticalSort, "0"); 2294value = key.GetValue(RegistryStateNames.HelpVisible, "1"); 2297value = key.GetValue(RegistryStateNames.CommandsVisible, "0"); 2302value = key.GetValue(RegistryStateNames.CommentSizeRatio, "-1"); 2313value = key.GetValue(RegistryStateNames.CommandSizeRatio, "-1");