예제 #1
0
파일: WMSClient.cs 프로젝트: AramisIT/Lamps
        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);
        }
예제 #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;
     }
 }
예제 #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;
         }
 }
예제 #4
0
파일: WMSClient.cs 프로젝트: AramisIT/FMCG
 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;
 }
예제 #5
0
파일: WMSClient.cs 프로젝트: AramisIT/FMCG
 public MobileTable CreateTable(string controlName, int height,
     Void2paramDelegate<object, OnRowSelectedEventArgs> onRowSelected)
 {
     return CreateTable(controlName, height, 60, onRowSelected);
 }
예제 #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;
 }
예제 #7
0
파일: WMSClient.cs 프로젝트: AramisIT/Lamps
 public MobileTable CreateTable(string controlName, int height, Void2paramDelegate <object, OnRowSelectedEventArgs> onRowSelected)
 {
     return(CreateTable(controlName, height, 60, onRowSelected));
 }
예제 #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;
 }