Upload to server
uploading
This commit is contained in:
39
patientman/PatientMan/Classes/hsphgrid.cs
Normal file
39
patientman/PatientMan/Classes/hsphgrid.cs
Normal file
@@ -0,0 +1,39 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using DevExpress.XtraGrid;
|
||||
|
||||
namespace PatientMan
|
||||
{
|
||||
class hsphgrid : GridControl
|
||||
{
|
||||
private DevExpress.XtraGrid.Views.Grid.GridView gridView1;
|
||||
private System.ComponentModel.IContainer components;
|
||||
public List<string> Patients { get; set; }
|
||||
private void InitializeComponent()
|
||||
{
|
||||
this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
|
||||
((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// gridView1
|
||||
//
|
||||
this.gridView1.GridControl = this;
|
||||
this.gridView1.Name = "gridView1";
|
||||
//
|
||||
// hsphgrid
|
||||
//
|
||||
this.MainView = this.gridView1;
|
||||
this.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
|
||||
this.gridView1});
|
||||
((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
|
||||
this.ResumeLayout(false);
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user