CreateRAMDiskForm.Designer.cs 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. namespace ISCSIConsole
  2. {
  3. partial class CreateRAMDiskForm
  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(CreateRAMDiskForm));
  29. this.numericDiskSize = new System.Windows.Forms.NumericUpDown();
  30. this.lblSize = new System.Windows.Forms.Label();
  31. this.btnOK = new System.Windows.Forms.Button();
  32. this.btnCancel = new System.Windows.Forms.Button();
  33. this.MbRadioButton = new System.Windows.Forms.RadioButton();
  34. this.GbRadioButton = new System.Windows.Forms.RadioButton();
  35. ((System.ComponentModel.ISupportInitialize)(this.numericDiskSize)).BeginInit();
  36. this.SuspendLayout();
  37. //
  38. // numericDiskSize
  39. //
  40. this.numericDiskSize.Location = new System.Drawing.Point(56, 15);
  41. this.numericDiskSize.Maximum = new decimal(new int[] {
  42. 2047,
  43. 0,
  44. 0,
  45. 0});
  46. this.numericDiskSize.Minimum = new decimal(new int[] {
  47. 1,
  48. 0,
  49. 0,
  50. 0});
  51. this.numericDiskSize.Name = "numericDiskSize";
  52. this.numericDiskSize.Size = new System.Drawing.Size(86, 21);
  53. this.numericDiskSize.TabIndex = 0;
  54. this.numericDiskSize.ThousandsSeparator = true;
  55. this.numericDiskSize.Value = new decimal(new int[] {
  56. 100,
  57. 0,
  58. 0,
  59. 0});
  60. //
  61. // lblSize
  62. //
  63. this.lblSize.AutoSize = true;
  64. this.lblSize.Location = new System.Drawing.Point(12, 18);
  65. this.lblSize.Name = "lblSize";
  66. this.lblSize.Size = new System.Drawing.Size(35, 12);
  67. this.lblSize.TabIndex = 1;
  68. this.lblSize.Text = "Size:";
  69. //
  70. // btnOK
  71. //
  72. this.btnOK.Location = new System.Drawing.Point(224, 88);
  73. this.btnOK.Name = "btnOK";
  74. this.btnOK.Size = new System.Drawing.Size(75, 23);
  75. this.btnOK.TabIndex = 6;
  76. this.btnOK.Text = "OK";
  77. this.btnOK.UseVisualStyleBackColor = true;
  78. this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
  79. //
  80. // btnCancel
  81. //
  82. this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  83. this.btnCancel.Location = new System.Drawing.Point(305, 88);
  84. this.btnCancel.Name = "btnCancel";
  85. this.btnCancel.Size = new System.Drawing.Size(75, 23);
  86. this.btnCancel.TabIndex = 7;
  87. this.btnCancel.Text = "Cancel";
  88. this.btnCancel.UseVisualStyleBackColor = true;
  89. this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
  90. //
  91. // MbRadioButton
  92. //
  93. this.MbRadioButton.AutoSize = true;
  94. this.MbRadioButton.Checked = true;
  95. this.MbRadioButton.Location = new System.Drawing.Point(148, 16);
  96. this.MbRadioButton.Name = "MbRadioButton";
  97. this.MbRadioButton.Size = new System.Drawing.Size(35, 16);
  98. this.MbRadioButton.TabIndex = 8;
  99. this.MbRadioButton.TabStop = true;
  100. this.MbRadioButton.Text = "MB";
  101. this.MbRadioButton.UseVisualStyleBackColor = true;
  102. //
  103. // GbRadioButton
  104. //
  105. this.GbRadioButton.AutoSize = true;
  106. this.GbRadioButton.Location = new System.Drawing.Point(189, 16);
  107. this.GbRadioButton.Name = "GbRadioButton";
  108. this.GbRadioButton.Size = new System.Drawing.Size(35, 16);
  109. this.GbRadioButton.TabIndex = 9;
  110. this.GbRadioButton.Text = "GB";
  111. this.GbRadioButton.UseVisualStyleBackColor = true;
  112. //
  113. // CreateRAMDiskForm
  114. //
  115. this.AcceptButton = this.btnOK;
  116. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  117. this.CancelButton = this.btnCancel;
  118. this.ClientSize = new System.Drawing.Size(384, 111);
  119. this.Controls.Add(this.GbRadioButton);
  120. this.Controls.Add(this.MbRadioButton);
  121. this.Controls.Add(this.btnCancel);
  122. this.Controls.Add(this.btnOK);
  123. this.Controls.Add(this.lblSize);
  124. this.Controls.Add(this.numericDiskSize);
  125. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  126. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  127. this.MaximizeBox = false;
  128. this.MaximumSize = new System.Drawing.Size(400, 150);
  129. this.MinimumSize = new System.Drawing.Size(400, 150);
  130. this.Name = "CreateRAMDiskForm";
  131. this.ShowInTaskbar = false;
  132. this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
  133. this.Text = "Create RAM Disk";
  134. ((System.ComponentModel.ISupportInitialize)(this.numericDiskSize)).EndInit();
  135. this.ResumeLayout(false);
  136. this.PerformLayout();
  137. }
  138. #endregion
  139. private System.Windows.Forms.NumericUpDown numericDiskSize;
  140. private System.Windows.Forms.Label lblSize;
  141. private System.Windows.Forms.Button btnOK;
  142. private System.Windows.Forms.Button btnCancel;
  143. private System.Windows.Forms.RadioButton MbRadioButton;
  144. private System.Windows.Forms.RadioButton GbRadioButton;
  145. }
  146. }