|
@@ -32,7 +32,7 @@ namespace ISCSIConsole
|
|
|
this.btnCancel = new System.Windows.Forms.Button();
|
|
|
this.btnOK = new System.Windows.Forms.Button();
|
|
|
this.chkReadOnly = new System.Windows.Forms.CheckBox();
|
|
|
- this.listPhysicalDisks = new System.Windows.Forms.ListView();
|
|
|
+ this.listVolumes = new System.Windows.Forms.ListView();
|
|
|
this.columnVolume = new System.Windows.Forms.ColumnHeader();
|
|
|
this.columnName = new System.Windows.Forms.ColumnHeader();
|
|
|
this.columnType = new System.Windows.Forms.ColumnHeader();
|
|
@@ -71,22 +71,22 @@ namespace ISCSIConsole
|
|
|
this.chkReadOnly.Text = "Read Only";
|
|
|
this.chkReadOnly.UseVisualStyleBackColor = true;
|
|
|
//
|
|
|
- // listPhysicalDisks
|
|
|
+ // listVolumes
|
|
|
//
|
|
|
- this.listPhysicalDisks.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
|
|
+ this.listVolumes.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
|
|
this.columnVolume,
|
|
|
this.columnName,
|
|
|
this.columnType,
|
|
|
this.columnStatus,
|
|
|
this.columnSize});
|
|
|
- this.listPhysicalDisks.FullRowSelect = true;
|
|
|
- this.listPhysicalDisks.Location = new System.Drawing.Point(12, 12);
|
|
|
- this.listPhysicalDisks.Name = "listPhysicalDisks";
|
|
|
- this.listPhysicalDisks.Size = new System.Drawing.Size(468, 173);
|
|
|
- this.listPhysicalDisks.TabIndex = 4;
|
|
|
- this.listPhysicalDisks.UseCompatibleStateImageBehavior = false;
|
|
|
- this.listPhysicalDisks.View = System.Windows.Forms.View.Details;
|
|
|
- this.listPhysicalDisks.ColumnWidthChanging += new System.Windows.Forms.ColumnWidthChangingEventHandler(this.listPhysicalDisks_ColumnWidthChanging);
|
|
|
+ this.listVolumes.FullRowSelect = true;
|
|
|
+ this.listVolumes.Location = new System.Drawing.Point(12, 12);
|
|
|
+ this.listVolumes.Name = "listVolumes";
|
|
|
+ this.listVolumes.Size = new System.Drawing.Size(468, 173);
|
|
|
+ this.listVolumes.TabIndex = 4;
|
|
|
+ this.listVolumes.UseCompatibleStateImageBehavior = false;
|
|
|
+ this.listVolumes.View = System.Windows.Forms.View.Details;
|
|
|
+ this.listVolumes.ColumnWidthChanging += new System.Windows.Forms.ColumnWidthChangingEventHandler(this.listPhysicalDisks_ColumnWidthChanging);
|
|
|
//
|
|
|
// columnVolume
|
|
|
//
|
|
@@ -117,7 +117,7 @@ namespace ISCSIConsole
|
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
|
|
|
this.CancelButton = this.btnCancel;
|
|
|
this.ClientSize = new System.Drawing.Size(494, 225);
|
|
|
- this.Controls.Add(this.listPhysicalDisks);
|
|
|
+ this.Controls.Add(this.listVolumes);
|
|
|
this.Controls.Add(this.chkReadOnly);
|
|
|
this.Controls.Add(this.btnOK);
|
|
|
this.Controls.Add(this.btnCancel);
|
|
@@ -140,7 +140,7 @@ namespace ISCSIConsole
|
|
|
private System.Windows.Forms.Button btnCancel;
|
|
|
private System.Windows.Forms.Button btnOK;
|
|
|
private System.Windows.Forms.CheckBox chkReadOnly;
|
|
|
- private System.Windows.Forms.ListView listPhysicalDisks;
|
|
|
+ private System.Windows.Forms.ListView listVolumes;
|
|
|
private System.Windows.Forms.ColumnHeader columnVolume;
|
|
|
private System.Windows.Forms.ColumnHeader columnName;
|
|
|
private System.Windows.Forms.ColumnHeader columnType;
|