Exemple #1
0
 public GQueryInfoThuaView()
 {
     InitializeComponent();
     _query = new QueryThua(this);
     _controller = new QueryThuaController(_query, this);
     _info = new ThuaInfo();
     _edit = (IEditTableView)this.gTableView1;
     this._query.Querying += new QueryingEventHandler(_query_Querying);
     this._query.Finished += new QueryFinishedEventHandler(_query_Finished);
     initPopup();
     this.gTableView1.ContextMenu = this._contextMenu;
 }
 public QueryThuaController(IQueryThua qrt, IQueryThuaView view)
 {
     this._query = qrt;
     this._view = view;
 }