Type editor for numeric collections.
This class can be used to edit numeric collections more easily in property grids.
Inheritance: System.Drawing.Design.UITypeEditor
 /// <summary>
 ///   Initializes a new instance of the <see cref="NumericCollectionEditorForm"/> class.
 /// </summary>
 /// 
 /// <param name="editor">The editor.</param>
 /// <param name="value">The value.</param>
 /// 
 public NumericCollectionEditorForm(NumericCollectionEditor editor, object value)
     : this()
 {
     this.editor = editor;
     this.value = value;
 }
Exemplo n.º 2
0
 /// <summary>
 ///   Initializes a new instance of the <see cref="NumericCollectionEditorForm"/> class.
 /// </summary>
 ///
 /// <param name="editor">The editor.</param>
 /// <param name="value">The value.</param>
 ///
 public NumericCollectionEditorForm(NumericCollectionEditor editor, object value)
     : this()
 {
     this.editor = editor;
     this.value  = value;
 }