SelectPhysicalDiskForm.Designer.cs 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. namespace ISCSIConsole
  2. {
  3. partial class SelectPhysicalDiskForm
  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.listPhysicalDisks = new System.Windows.Forms.ListView();
  32. this.columnDisk = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  33. this.columnDescription = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  34. this.columnSerialNumber = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  35. this.columnSize = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  36. this.SuspendLayout();
  37. //
  38. // btnCancel
  39. //
  40. this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  41. this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  42. this.btnCancel.Location = new System.Drawing.Point(589, 265);
  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.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  53. this.btnOK.Location = new System.Drawing.Point(508, 265);
  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.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  64. this.chkReadOnly.AutoSize = true;
  65. this.chkReadOnly.Location = new System.Drawing.Point(12, 269);
  66. this.chkReadOnly.Name = "chkReadOnly";
  67. this.chkReadOnly.Size = new System.Drawing.Size(78, 16);
  68. this.chkReadOnly.TabIndex = 3;
  69. this.chkReadOnly.Text = "Read Only";
  70. this.chkReadOnly.UseVisualStyleBackColor = true;
  71. //
  72. // listPhysicalDisks
  73. //
  74. this.listPhysicalDisks.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  75. | System.Windows.Forms.AnchorStyles.Left)
  76. | System.Windows.Forms.AnchorStyles.Right)));
  77. this.listPhysicalDisks.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
  78. this.columnDisk,
  79. this.columnDescription,
  80. this.columnSerialNumber,
  81. this.columnSize});
  82. this.listPhysicalDisks.FullRowSelect = true;
  83. this.listPhysicalDisks.GridLines = true;
  84. this.listPhysicalDisks.HideSelection = false;
  85. this.listPhysicalDisks.Location = new System.Drawing.Point(12, 12);
  86. this.listPhysicalDisks.Name = "listPhysicalDisks";
  87. this.listPhysicalDisks.Size = new System.Drawing.Size(652, 251);
  88. this.listPhysicalDisks.TabIndex = 4;
  89. this.listPhysicalDisks.UseCompatibleStateImageBehavior = false;
  90. this.listPhysicalDisks.View = System.Windows.Forms.View.Details;
  91. //
  92. // columnDisk
  93. //
  94. this.columnDisk.Text = "Disk";
  95. //
  96. // columnDescription
  97. //
  98. this.columnDescription.Text = "Description";
  99. this.columnDescription.Width = 210;
  100. //
  101. // columnSerialNumber
  102. //
  103. this.columnSerialNumber.Text = "Serial Number";
  104. this.columnSerialNumber.Width = 134;
  105. //
  106. // columnSize
  107. //
  108. this.columnSize.Text = "Size";
  109. this.columnSize.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
  110. //
  111. // SelectPhysicalDiskForm
  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(668, 289);
  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.MaximizeBox = false;
  122. this.MinimizeBox = false;
  123. this.MinimumSize = new System.Drawing.Size(500, 250);
  124. this.Name = "SelectPhysicalDiskForm";
  125. this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
  126. this.Text = "Select Physical Disk";
  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 listPhysicalDisks;
  136. private System.Windows.Forms.ColumnHeader columnDisk;
  137. private System.Windows.Forms.ColumnHeader columnDescription;
  138. private System.Windows.Forms.ColumnHeader columnSerialNumber;
  139. private System.Windows.Forms.ColumnHeader columnSize;
  140. }
  141. }