Exemple #1
0
 /// <summary>
 /// 查询订单信息
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void btn_Query_Click(object sender, EventArgs e)
 {
     try
     {
         dt_Group = bll_TMO_ORDER.Get_PC_GROUP().Tables[0];
         this.gc_tmo_order_pj.DataSource = dt_Group;
         this.gv_tmo_order_pj.OptionsView.ColumnAutoWidth = false;
         SetGridViewRowNum.SetRowNum(gv_tmo_order_pj);
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.ToString());
     }
 }