コード例 #1
0
ファイル: ImageTextCellHandler.cs プロジェクト: sami1971/Eto
 public ImageTextCellHandler()
 {
     Control = new EtoCell {
         Handler            = this,
         UsesSingleLineMode = true
     };
 }
コード例 #2
0
 public ImageViewCellHandler()
 {
     Control = new EtoCell {
         Handler = this
     };
     Control.ImageLayout = swf.DataGridViewImageCellLayout.Zoom;
 }
コード例 #3
0
 public ComboBoxCellHandler()
 {
     Control = new EtoCell {
         Handler = this, ControlSize = NSControlSize.Regular, Bordered = false
     };
     Control.Title = string.Empty;
 }
コード例 #4
0
 public CheckBoxCellHandler()
 {
     Control = new EtoCell {
         Handler = this
     };
     Control.Title = string.Empty;
     Control.SetButtonType(NSButtonType.Switch);
 }
コード例 #5
0
ファイル: TextBoxCellHandler.cs プロジェクト: pcdummy/Eto
 public TextBoxCellHandler()
 {
     Control = new EtoCell {
         Handler            = this,
         UsesSingleLineMode = true,
         Wraps      = false,
         Scrollable = true
     };
 }
コード例 #6
0
ファイル: ComboBoxCellHandler.cs プロジェクト: sami1971/Eto
 public ComboBoxCellHandler()
 {
     Control = new EtoCell {
         Handler       = this,
         ValueMember   = "Key",
         DisplayMember = "Text",
         FlatStyle     = swf.FlatStyle.Flat
     };
 }
コード例 #7
0
 public TextBoxCellHandler()
 {
     Control = new EtoCell {
         Handler = this
     };
 }
コード例 #8
0
ファイル: ImageTextCellHandler.cs プロジェクト: zzlvff/Eto
 public ImageTextCellHandler()
 {
     Control = new EtoCell {
         Handler = this
     };
 }
コード例 #9
0
 public CheckBoxCellHandler()
 {
     Control = new EtoCell {
         Handler = this
     };
 }
コード例 #10
0
 public ProgressCellHandler()
 {
     Control = new EtoCell {
         Handler = this, Enabled = true, LevelIndicatorStyle = NSLevelIndicatorStyle.ContinuousCapacity, MinValue = 0, MaxValue = 1
     };
 }
コード例 #11
0
ファイル: ImageViewCellHandler.cs プロジェクト: wnf0000/Eto
 public ImageViewCellHandler()
 {
     Control = new EtoCell {
         Handler = this, Enabled = true
     };
 }
コード例 #12
0
 public DrawableCellHandler()
 {
     Control = new EtoCell {
         Handler = this, Enabled = true
     };
 }
コード例 #13
0
 public ProgressCellHandler()
 {
     Control = new EtoCell {
         Handler = this
     };
 }
コード例 #14
0
 public DrawableCellHandler()
 {
     Control = new EtoCell {
         Handler = this
     };
 }
コード例 #15
0
 public CustomCellHandler()
 {
     Control = new EtoCell {
         Handler = this
     };
 }