SelectVolumeForm.Designer.cs 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. namespace ISCSIConsole
  2. {
  3. partial class SelectVolumeForm
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SelectVolumeForm));
  29. this.btnCancel = new System.Windows.Forms.Button();
  30. this.btnOK = new System.Windows.Forms.Button();
  31. this.chkReadOnly = new System.Windows.Forms.CheckBox();
  32. this.listPhysicalDisks = new System.Windows.Forms.ListView();
  33. this.columnVolume = new System.Windows.Forms.ColumnHeader();
  34. this.columnName = new System.Windows.Forms.ColumnHeader();
  35. this.columnType = new System.Windows.Forms.ColumnHeader();
  36. this.columnStatus = new System.Windows.Forms.ColumnHeader();
  37. this.columnSize = new System.Windows.Forms.ColumnHeader();
  38. this.SuspendLayout();
  39. //
  40. // btnCancel
  41. //
  42. this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  43. this.btnCancel.Location = new System.Drawing.Point(405, 191);
  44. this.btnCancel.Name = "btnCancel";
  45. this.btnCancel.Size = new System.Drawing.Size(75, 23);
  46. this.btnCancel.TabIndex = 1;
  47. this.btnCancel.Text = "Cancel";
  48. this.btnCancel.UseVisualStyleBackColor = true;
  49. this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
  50. //
  51. // btnOK
  52. //
  53. this.btnOK.Location = new System.Drawing.Point(324, 191);
  54. this.btnOK.Name = "btnOK";
  55. this.btnOK.Size = new System.Drawing.Size(75, 23);
  56. this.btnOK.TabIndex = 2;
  57. this.btnOK.Text = "OK";
  58. this.btnOK.UseVisualStyleBackColor = true;
  59. this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
  60. //
  61. // chkReadOnly
  62. //
  63. this.chkReadOnly.AutoSize = true;
  64. this.chkReadOnly.Location = new System.Drawing.Point(12, 195);
  65. this.chkReadOnly.Name = "chkReadOnly";
  66. this.chkReadOnly.Size = new System.Drawing.Size(76, 17);
  67. this.chkReadOnly.TabIndex = 3;
  68. this.chkReadOnly.Text = "Read Only";
  69. this.chkReadOnly.UseVisualStyleBackColor = true;
  70. //
  71. // listPhysicalDisks
  72. //
  73. this.listPhysicalDisks.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
  74. this.columnVolume,
  75. this.columnName,
  76. this.columnType,
  77. this.columnStatus,
  78. this.columnSize});
  79. this.listPhysicalDisks.FullRowSelect = true;
  80. this.listPhysicalDisks.Location = new System.Drawing.Point(12, 12);
  81. this.listPhysicalDisks.Name = "listPhysicalDisks";
  82. this.listPhysicalDisks.Size = new System.Drawing.Size(468, 173);
  83. this.listPhysicalDisks.TabIndex = 4;
  84. this.listPhysicalDisks.UseCompatibleStateImageBehavior = false;
  85. this.listPhysicalDisks.View = System.Windows.Forms.View.Details;
  86. this.listPhysicalDisks.ColumnWidthChanging += new System.Windows.Forms.ColumnWidthChangingEventHandler(this.listPhysicalDisks_ColumnWidthChanging);
  87. //
  88. // columnVolume
  89. //
  90. this.columnVolume.Text = "Volume";
  91. //
  92. // columnName
  93. //
  94. this.columnName.Text = "Name";
  95. this.columnName.Width = 150;
  96. //
  97. // columnType
  98. //
  99. this.columnType.Text = "Type";
  100. this.columnType.Width = 134;
  101. //
  102. // columnStatus
  103. //
  104. this.columnStatus.Text = "Status";
  105. //
  106. // columnSize
  107. //
  108. this.columnSize.Text = "Size";
  109. this.columnSize.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
  110. //
  111. // SelectVolumeForm
  112. //
  113. this.AcceptButton = this.btnOK;
  114. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  115. this.CancelButton = this.btnCancel;
  116. this.ClientSize = new System.Drawing.Size(494, 225);
  117. this.Controls.Add(this.listPhysicalDisks);
  118. this.Controls.Add(this.chkReadOnly);
  119. this.Controls.Add(this.btnOK);
  120. this.Controls.Add(this.btnCancel);
  121. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  122. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  123. this.MaximizeBox = false;
  124. this.MaximumSize = new System.Drawing.Size(500, 250);
  125. this.MinimumSize = new System.Drawing.Size(500, 250);
  126. this.Name = "SelectVolumeForm";
  127. this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
  128. this.Text = "Select Volume";
  129. this.Load += new System.EventHandler(this.SelectPhysicalDiskForm_Load);
  130. this.ResumeLayout(false);
  131. this.PerformLayout();
  132. }
  133. #endregion
  134. private System.Windows.Forms.Button btnCancel;
  135. private System.Windows.Forms.Button btnOK;
  136. private System.Windows.Forms.CheckBox chkReadOnly;
  137. private System.Windows.Forms.ListView listPhysicalDisks;
  138. private System.Windows.Forms.ColumnHeader columnVolume;
  139. private System.Windows.Forms.ColumnHeader columnName;
  140. private System.Windows.Forms.ColumnHeader columnType;
  141. private System.Windows.Forms.ColumnHeader columnStatus;
  142. private System.Windows.Forms.ColumnHeader columnSize;
  143. }
  144. }