Browse Source

Renamed control

Tal Aloni 8 years ago
parent
commit
8f5ff43a52

+ 13 - 13
ISCSIConsole/Win32/SelectVolumeForm.Designer.cs

@@ -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;

+ 3 - 3
ISCSIConsole/Win32/SelectVolumeForm.cs

@@ -47,15 +47,15 @@ namespace ISCSIConsole
                 item.SubItems.Add(status);
                 item.SubItems.Add(FormattingHelper.GetStandardSizeString(volume.Size));
                 item.Tag = volume;
-                listPhysicalDisks.Items.Add(item);
+                listVolumes.Items.Add(item);
             }
         }
 
         private void btnOK_Click(object sender, EventArgs e)
         {
-            if (listPhysicalDisks.SelectedItems.Count > 0)
+            if (listVolumes.SelectedItems.Count > 0)
             {
-                Volume selectedVolume = (Volume)listPhysicalDisks.SelectedItems[0].Tag;
+                Volume selectedVolume = (Volume)listVolumes.SelectedItems[0].Tag;
                 if (!chkReadOnly.Checked)
                 {
                     Guid? volumeGuid = WindowsVolumeHelper.GetWindowsVolumeGuid(selectedVolume);