public ImageTextCellHandler() { Control = new EtoCell { Handler = this, UsesSingleLineMode = true }; }
public ImageViewCellHandler() { Control = new EtoCell { Handler = this }; Control.ImageLayout = swf.DataGridViewImageCellLayout.Zoom; }
public ComboBoxCellHandler() { Control = new EtoCell { Handler = this, ControlSize = NSControlSize.Regular, Bordered = false }; Control.Title = string.Empty; }
public CheckBoxCellHandler() { Control = new EtoCell { Handler = this }; Control.Title = string.Empty; Control.SetButtonType(NSButtonType.Switch); }
public TextBoxCellHandler() { Control = new EtoCell { Handler = this, UsesSingleLineMode = true, Wraps = false, Scrollable = true }; }
public ComboBoxCellHandler() { Control = new EtoCell { Handler = this, ValueMember = "Key", DisplayMember = "Text", FlatStyle = swf.FlatStyle.Flat }; }
public TextBoxCellHandler() { Control = new EtoCell { Handler = this }; }
public ImageTextCellHandler() { Control = new EtoCell { Handler = this }; }
public CheckBoxCellHandler() { Control = new EtoCell { Handler = this }; }
public ProgressCellHandler() { Control = new EtoCell { Handler = this, Enabled = true, LevelIndicatorStyle = NSLevelIndicatorStyle.ContinuousCapacity, MinValue = 0, MaxValue = 1 }; }
public ImageViewCellHandler() { Control = new EtoCell { Handler = this, Enabled = true }; }
public DrawableCellHandler() { Control = new EtoCell { Handler = this, Enabled = true }; }
public ProgressCellHandler() { Control = new EtoCell { Handler = this }; }
public DrawableCellHandler() { Control = new EtoCell { Handler = this }; }
public CustomCellHandler() { Control = new EtoCell { Handler = this }; }