SelectVolumeForm.Designer.cs 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  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. this.btnCancel = new System.Windows.Forms.Button();
  29. this.btnOK = new System.Windows.Forms.Button();
  30. this.chkReadOnly = new System.Windows.Forms.CheckBox();
  31. this.listVolumes = new System.Windows.Forms.ListView();
  32. this.columnVolume = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  33. this.columnName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  34. this.columnType = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  35. this.columnStatus = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  36. this.columnSize = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  37. this.SuspendLayout();
  38. //
  39. // btnCancel
  40. //
  41. this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  42. this.btnCancel.Location = new System.Drawing.Point(405, 191);
  43. this.btnCancel.Name = "btnCancel";
  44. this.btnCancel.Size = new System.Drawing.Size(75, 23);
  45. this.btnCancel.TabIndex = 1;
  46. this.btnCancel.Text = "Cancel";
  47. this.btnCancel.UseVisualStyleBackColor = true;
  48. this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
  49. //
  50. // btnOK
  51. //
  52. this.btnOK.Location = new System.Drawing.Point(324, 191);
  53. this.btnOK.Name = "btnOK";
  54. this.btnOK.Size = new System.Drawing.Size(75, 23);
  55. this.btnOK.TabIndex = 2;
  56. this.btnOK.Text = "OK";
  57. this.btnOK.UseVisualStyleBackColor = true;
  58. this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
  59. //
  60. // chkReadOnly
  61. //
  62. this.chkReadOnly.AutoSize = true;
  63. this.chkReadOnly.Location = new System.Drawing.Point(12, 195);
  64. this.chkReadOnly.Name = "chkReadOnly";
  65. this.chkReadOnly.Size = new System.Drawing.Size(78, 16);
  66. this.chkReadOnly.TabIndex = 3;
  67. this.chkReadOnly.Text = "Read Only";
  68. this.chkReadOnly.UseVisualStyleBackColor = true;
  69. //
  70. // listVolumes
  71. //
  72. this.listVolumes.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
  73. this.columnVolume,
  74. this.columnName,
  75. this.columnType,
  76. this.columnStatus,
  77. this.columnSize});
  78. this.listVolumes.FullRowSelect = true;
  79. this.listVolumes.Location = new System.Drawing.Point(12, 12);
  80. this.listVolumes.Name = "listVolumes";
  81. this.listVolumes.Size = new System.Drawing.Size(468, 173);
  82. this.listVolumes.TabIndex = 4;
  83. this.listVolumes.UseCompatibleStateImageBehavior = false;
  84. this.listVolumes.View = System.Windows.Forms.View.Details;
  85. this.listVolumes.ColumnWidthChanging += new System.Windows.Forms.ColumnWidthChangingEventHandler(this.listPhysicalDisks_ColumnWidthChanging);
  86. //
  87. // columnVolume
  88. //
  89. this.columnVolume.Text = "Volume";
  90. //
  91. // columnName
  92. //
  93. this.columnName.Text = "Name";
  94. this.columnName.Width = 150;
  95. //
  96. // columnType
  97. //
  98. this.columnType.Text = "Type";
  99. this.columnType.Width = 134;
  100. //
  101. // columnStatus
  102. //
  103. this.columnStatus.Text = "Status";
  104. //
  105. // columnSize
  106. //
  107. this.columnSize.Text = "Size";
  108. this.columnSize.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
  109. //
  110. // SelectVolumeForm
  111. //
  112. this.AcceptButton = this.btnOK;
  113. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  114. this.CancelButton = this.btnCancel;
  115. this.ClientSize = new System.Drawing.Size(484, 211);
  116. this.Controls.Add(this.listVolumes);
  117. this.Controls.Add(this.chkReadOnly);
  118. this.Controls.Add(this.btnOK);
  119. this.Controls.Add(this.btnCancel);
  120. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  121. this.MaximizeBox = false;
  122. this.MaximumSize = new System.Drawing.Size(500, 250);
  123. this.MinimumSize = new System.Drawing.Size(500, 250);
  124. this.Name = "SelectVolumeForm";
  125. this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
  126. this.Text = "Select Volume";
  127. this.Load += new System.EventHandler(this.SelectPhysicalDiskForm_Load);
  128. this.ResumeLayout(false);
  129. this.PerformLayout();
  130. }
  131. #endregion
  132. private System.Windows.Forms.Button btnCancel;
  133. private System.Windows.Forms.Button btnOK;
  134. private System.Windows.Forms.CheckBox chkReadOnly;
  135. private System.Windows.Forms.ListView listVolumes;
  136. private System.Windows.Forms.ColumnHeader columnVolume;
  137. private System.Windows.Forms.ColumnHeader columnName;
  138. private System.Windows.Forms.ColumnHeader columnType;
  139. private System.Windows.Forms.ColumnHeader columnStatus;
  140. private System.Windows.Forms.ColumnHeader columnSize;
  141. }
  142. }