Exemplo n.º 1
0
        public MobileTable CreateTable(string controlName, int height, int top, Void2paramDelegate <object, OnRowSelectedEventArgs> onRowSelected)
        {
            MobileTable NewControl = new MobileTable(MainForm, controlName, height, top, onRowSelected);

            ControlsArray.Add(NewControl);
            return(NewControl);
        }
Exemplo n.º 2
0
 public MobileTable(MainForm Form, string controlName, int height, int top, Void2paramDelegate <object, OnRowSelectedEventArgs> onRowSelected) : this(Form, controlName, height, top)
 {
     if (onRowSelected != null)
     {
         OnRowSelected += onRowSelected;
     }
 }
Exemplo n.º 3
0
 public MobileTable(MainForm Form, string controlName, int height, int top, Void2paramDelegate<object, OnRowSelectedEventArgs> onRowSelected)
     : this(Form, controlName, height, top)
 {
     if (onRowSelected != null)
         {
         OnRowSelected += onRowSelected;
         }
 }
Exemplo n.º 4
0
 public MobileTable CreateTable(string controlName, int height, int top,
     Void2paramDelegate<object, OnRowSelectedEventArgs> onRowSelected)
 {
     MobileTable NewControl = new MobileTable(MainForm, controlName, height, top, onRowSelected);
     ControlsArray.Add(NewControl);
     return NewControl;
 }
Exemplo n.º 5
0
 public MobileTable CreateTable(string controlName, int height,
     Void2paramDelegate<object, OnRowSelectedEventArgs> onRowSelected)
 {
     return CreateTable(controlName, height, 60, onRowSelected);
 }
Exemplo n.º 6
0
 public MobileTable(MainForm Form, string controlName, int height, int top, Void2paramDelegate<object, OnChangeSelectedRowEventArgs> onChangeSelectedRow)
     : this(Form, controlName, height, top)
 {
     DataGrid.CurrentCellChanged += DataGrid_CurrentCellChanged;
 }
Exemplo n.º 7
0
 public MobileTable CreateTable(string controlName, int height, Void2paramDelegate <object, OnRowSelectedEventArgs> onRowSelected)
 {
     return(CreateTable(controlName, height, 60, onRowSelected));
 }
Exemplo n.º 8
0
 public MobileTable(MainForm Form, string controlName, int height, int top, Void2paramDelegate <object, OnChangeSelectedRowEventArgs> onChangeSelectedRow)
     : this(Form, controlName, height, top)
 {
     DataGrid.CurrentCellChanged += DataGrid_CurrentCellChanged;
 }