SelectPhysicalDiskForm.Designer.cs 6.3 KB

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