예제 #1
0
파일: UIHelper.cs 프로젝트: 3guy/testRe
 internal static void 查询订单详情(QuickForm mf, DataTable dt)
 {
     Dispatch.Instance.Add<QuickForm, Guid>(
     mf, Guid.NewGuid(), (c, d) =>
     {
         mf.dataGridView1.DataSource = dt;
     });
 }
예제 #2
0
파일: UIHelper.cs 프로젝트: 3guy/testRe
 internal static void Message(QuickForm mf, string msg)
 {
     Dispatch.Instance.Add<QuickForm, Guid>(
     mf, Guid.NewGuid(), (c, d) =>
     {
         MessageBox.Show(msg);
     });
 }
예제 #3
0
 internal ActionFactory(QuickForm mf, NetClient nc)
 {
     this.mf = mf;
     this.nc = nc;
 }