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