Ejemplo n.º 1
0
        public StringPropertyEditor()
        {
            this.stringEditor                  = new StringEditorTemplate(this);
            this.stringEditor.Invalidate      += this.stringEditor_Invalidate;
            this.stringEditor.Edited          += this.stringEditor_Edited;
            this.stringEditor.EditingFinished += this.stringEditor_EditingFinished;

            //this.Height = 18;
        }
Ejemplo n.º 2
0
 public LabelPropertyEditor()
 {
     this.selectableLabel             = new StringEditorTemplate(this);
     this.selectableLabel.ReadOnly    = true;
     this.selectableLabel.Invalidate += this.stringEditor_Invalidate;
 }