2 instantiations of DesignerOptionCollection
System (2)
compmod\system\componentmodel\design\DesignerOptionService.cs (2)
33_options = new DesignerOptionCollection(this, null, string.Empty, null); 61return new DesignerOptionCollection(this, parent, name, value);
23 references to DesignerOptionCollection
System (23)
compmod\system\componentmodel\design\DesignerOptionService.cs (23)
24private DesignerOptionCollection _options; 30public DesignerOptionCollection Options { 48protected DesignerOptionCollection CreateOptionCollection (DesignerOptionCollection parent, string name, object value) { 79DesignerOptionCollection options = Options; 94protected virtual void PopulateOptionCollection(DesignerOptionCollection options) { 100protected virtual bool ShowDialog(DesignerOptionCollection options, object optionObject) { 140private DesignerOptionCollection _parent; 149internal DesignerOptionCollection(DesignerOptionService service, DesignerOptionCollection parent, string name, object value) { 186public DesignerOptionCollection Parent { 218foreach(DesignerOptionCollection child in _children) { 233public DesignerOptionCollection this[int index] { 240return (DesignerOptionCollection)_children[index]; 248public DesignerOptionCollection this[string name] { 251foreach(DesignerOptionCollection child in _children) { 291public int IndexOf(DesignerOptionCollection value) { 299private static object RecurseFindValue(DesignerOptionCollection options) { 304foreach(DesignerOptionCollection child in options) { 511DesignerOptionCollection options = value as DesignerOptionCollection; 516foreach(DesignerOptionCollection option in options) { 535private DesignerOptionCollection _option; 537internal OptionPropertyDescriptor(DesignerOptionCollection option) : base(option.Name, null) {