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