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