SelectDiskImageForm.Designer.cs 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. namespace ISCSIConsole
  2. {
  3. partial class SelectDiskImageForm
  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(SelectDiskImageForm));
  29. this.lblFilePath = new System.Windows.Forms.Label();
  30. this.txtFilePath = new System.Windows.Forms.TextBox();
  31. this.btnBrowse = new System.Windows.Forms.Button();
  32. this.btnOK = new System.Windows.Forms.Button();
  33. this.btnCancel = new System.Windows.Forms.Button();
  34. this.checkBox1 = new System.Windows.Forms.CheckBox();
  35. this.openDiskImageDialog = new System.Windows.Forms.OpenFileDialog();
  36. this.SuspendLayout();
  37. //
  38. // lblFilePath
  39. //
  40. this.lblFilePath.AutoSize = true;
  41. this.lblFilePath.Location = new System.Drawing.Point(12, 18);
  42. this.lblFilePath.Name = "lblFilePath";
  43. this.lblFilePath.Size = new System.Drawing.Size(26, 13);
  44. this.lblFilePath.TabIndex = 3;
  45. this.lblFilePath.Text = "File:";
  46. //
  47. // txtFilePath
  48. //
  49. this.txtFilePath.Location = new System.Drawing.Point(56, 15);
  50. this.txtFilePath.Name = "txtFilePath";
  51. this.txtFilePath.Size = new System.Drawing.Size(243, 20);
  52. this.txtFilePath.TabIndex = 4;
  53. //
  54. // btnBrowse
  55. //
  56. this.btnBrowse.Location = new System.Drawing.Point(305, 13);
  57. this.btnBrowse.Name = "btnBrowse";
  58. this.btnBrowse.Size = new System.Drawing.Size(75, 23);
  59. this.btnBrowse.TabIndex = 5;
  60. this.btnBrowse.Text = "Browse..";
  61. this.btnBrowse.UseVisualStyleBackColor = true;
  62. this.btnBrowse.Click += new System.EventHandler(this.btnBrowse_Click);
  63. //
  64. // btnOK
  65. //
  66. this.btnOK.Location = new System.Drawing.Point(224, 88);
  67. this.btnOK.Name = "btnOK";
  68. this.btnOK.Size = new System.Drawing.Size(75, 23);
  69. this.btnOK.TabIndex = 6;
  70. this.btnOK.Text = "OK";
  71. this.btnOK.UseVisualStyleBackColor = true;
  72. this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
  73. //
  74. // btnCancel
  75. //
  76. this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  77. this.btnCancel.Location = new System.Drawing.Point(305, 88);
  78. this.btnCancel.Name = "btnCancel";
  79. this.btnCancel.Size = new System.Drawing.Size(75, 23);
  80. this.btnCancel.TabIndex = 7;
  81. this.btnCancel.Text = "Cancel";
  82. this.btnCancel.UseVisualStyleBackColor = true;
  83. this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
  84. //
  85. // checkBox1
  86. //
  87. this.checkBox1.AutoSize = true;
  88. this.checkBox1.Location = new System.Drawing.Point(12, 92);
  89. this.checkBox1.Name = "checkBox1";
  90. this.checkBox1.Size = new System.Drawing.Size(74, 17);
  91. this.checkBox1.TabIndex = 8;
  92. this.checkBox1.Text = "Read only";
  93. this.checkBox1.UseVisualStyleBackColor = true;
  94. //
  95. // openDiskImageDialog
  96. //
  97. this.openDiskImageDialog.Filter = "All Supported Disk Images (*.vhd,*.vmdk,*.img)|*.vhd;*.vmdk;*.img|Virtual Hard Di" +
  98. "sk (*.vhd)|*.vhd|Virtual Machine Disk (*.vmdk)|*.vmdk|Raw Disk Image (*.img)|*.i" +
  99. "mg|All Files (*.*)|*.*";
  100. //
  101. // SelectDiskImageForm
  102. //
  103. this.AcceptButton = this.btnOK;
  104. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  105. this.CancelButton = this.btnCancel;
  106. this.ClientSize = new System.Drawing.Size(394, 125);
  107. this.Controls.Add(this.checkBox1);
  108. this.Controls.Add(this.btnCancel);
  109. this.Controls.Add(this.btnOK);
  110. this.Controls.Add(this.btnBrowse);
  111. this.Controls.Add(this.txtFilePath);
  112. this.Controls.Add(this.lblFilePath);
  113. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  114. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  115. this.MaximizeBox = false;
  116. this.MaximumSize = new System.Drawing.Size(400, 150);
  117. this.MinimumSize = new System.Drawing.Size(400, 150);
  118. this.Name = "SelectDiskImageForm";
  119. this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
  120. this.Text = "Select Disk Image";
  121. this.ResumeLayout(false);
  122. this.PerformLayout();
  123. }
  124. #endregion
  125. private System.Windows.Forms.Label lblFilePath;
  126. private System.Windows.Forms.TextBox txtFilePath;
  127. private System.Windows.Forms.Button btnBrowse;
  128. private System.Windows.Forms.Button btnOK;
  129. private System.Windows.Forms.Button btnCancel;
  130. private System.Windows.Forms.CheckBox checkBox1;
  131. private System.Windows.Forms.OpenFileDialog openDiskImageDialog;
  132. }
  133. }