Beispiel #1
0
 private void SetupGrid()
 {
     if (this.resultDataSet != null)
     {
         this.grdQuery.DataSource = this.resultDataSet.Tables[0];
         WizardHelper.SetupGridView(this.grdQuery);
         this.grdQuery.AllowUserToOrderColumns = true;
     }
 }
 void FillDataGrid(string fileName)
 {
     this.resultDataSet        = new DataSet();
     this.resultDataSet.Locale = CultureInfo.CurrentCulture;
     resultDataSet.ReadXml(fileName);
     this.grdQuery.DataSource = resultDataSet.Tables[0];
     WizardHelper.SetupGridView(this.grdQuery);
     grdQuery.AllowUserToOrderColumns = true;
     base.EnableFinish = true;
 }