CreateRAMDiskForm.Designer.cs 5.5 KB

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