Beispiel #1
0
 public ImageTextCellHandler()
 {
     Control = new EtoCell {
         Handler            = this,
         UsesSingleLineMode = true
     };
 }
Beispiel #2
0
 public ImageViewCellHandler()
 {
     Control = new EtoCell {
         Handler = this
     };
     Control.ImageLayout = swf.DataGridViewImageCellLayout.Zoom;
 }
Beispiel #3
0
 public ComboBoxCellHandler()
 {
     Control = new EtoCell {
         Handler = this, ControlSize = NSControlSize.Regular, Bordered = false
     };
     Control.Title = string.Empty;
 }
Beispiel #4
0
 public CheckBoxCellHandler()
 {
     Control = new EtoCell {
         Handler = this
     };
     Control.Title = string.Empty;
     Control.SetButtonType(NSButtonType.Switch);
 }
Beispiel #5
0
 public TextBoxCellHandler()
 {
     Control = new EtoCell {
         Handler            = this,
         UsesSingleLineMode = true,
         Wraps      = false,
         Scrollable = true
     };
 }
Beispiel #6
0
 public ComboBoxCellHandler()
 {
     Control = new EtoCell {
         Handler       = this,
         ValueMember   = "Key",
         DisplayMember = "Text",
         FlatStyle     = swf.FlatStyle.Flat
     };
 }
Beispiel #7
0
 public TextBoxCellHandler()
 {
     Control = new EtoCell {
         Handler = this
     };
 }
Beispiel #8
0
 public ImageTextCellHandler()
 {
     Control = new EtoCell {
         Handler = this
     };
 }
Beispiel #9
0
 public CheckBoxCellHandler()
 {
     Control = new EtoCell {
         Handler = this
     };
 }
Beispiel #10
0
 public ProgressCellHandler()
 {
     Control = new EtoCell {
         Handler = this, Enabled = true, LevelIndicatorStyle = NSLevelIndicatorStyle.ContinuousCapacity, MinValue = 0, MaxValue = 1
     };
 }
Beispiel #11
0
 public ImageViewCellHandler()
 {
     Control = new EtoCell {
         Handler = this, Enabled = true
     };
 }
Beispiel #12
0
 public DrawableCellHandler()
 {
     Control = new EtoCell {
         Handler = this, Enabled = true
     };
 }
Beispiel #13
0
 public ProgressCellHandler()
 {
     Control = new EtoCell {
         Handler = this
     };
 }
Beispiel #14
0
 public DrawableCellHandler()
 {
     Control = new EtoCell {
         Handler = this
     };
 }
Beispiel #15
0
 public CustomCellHandler()
 {
     Control = new EtoCell {
         Handler = this
     };
 }