InputDialog.Designer.cs 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. namespace JR62THD_V2 {
  2. partial class InputDialog {
  3. /// <summary>
  4. /// Required designer variable.
  5. /// </summary>
  6. private System.ComponentModel.IContainer components = null;
  7. /// <summary>
  8. /// Clean up any resources being used.
  9. /// </summary>
  10. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  11. protected override void Dispose(bool disposing) {
  12. if (disposing && (components != null)) {
  13. components.Dispose();
  14. }
  15. base.Dispose(disposing);
  16. }
  17. #region Windows Form Designer generated code
  18. /// <summary>
  19. /// Required method for Designer support - do not modify
  20. /// the contents of this method with the code editor.
  21. /// </summary>
  22. private void InitializeComponent() {
  23. this.textBox1 = new System.Windows.Forms.TextBox();
  24. this.checkBox1 = new System.Windows.Forms.CheckBox();
  25. this.button1 = new System.Windows.Forms.Button();
  26. this.button2 = new System.Windows.Forms.Button();
  27. this.label1 = new System.Windows.Forms.Label();
  28. this.SuspendLayout();
  29. //
  30. // textBox1
  31. //
  32. this.textBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  33. | System.Windows.Forms.AnchorStyles.Right)));
  34. this.textBox1.Location = new System.Drawing.Point(52, 12);
  35. this.textBox1.Name = "textBox1";
  36. this.textBox1.Size = new System.Drawing.Size(260, 20);
  37. this.textBox1.TabIndex = 0;
  38. this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
  39. //
  40. // checkBox1
  41. //
  42. this.checkBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  43. this.checkBox1.AutoSize = true;
  44. this.checkBox1.Checked = true;
  45. this.checkBox1.CheckState = System.Windows.Forms.CheckState.Checked;
  46. this.checkBox1.Location = new System.Drawing.Point(12, 91);
  47. this.checkBox1.Name = "checkBox1";
  48. this.checkBox1.Size = new System.Drawing.Size(142, 17);
  49. this.checkBox1.TabIndex = 1;
  50. this.checkBox1.Text = "Use this value for all files";
  51. this.checkBox1.UseVisualStyleBackColor = true;
  52. this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
  53. //
  54. // button1
  55. //
  56. this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  57. this.button1.DialogResult = System.Windows.Forms.DialogResult.OK;
  58. this.button1.Location = new System.Drawing.Point(160, 87);
  59. this.button1.Name = "button1";
  60. this.button1.Size = new System.Drawing.Size(75, 23);
  61. this.button1.TabIndex = 2;
  62. this.button1.Text = "OK";
  63. this.button1.UseVisualStyleBackColor = true;
  64. //
  65. // button2
  66. //
  67. this.button2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  68. this.button2.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  69. this.button2.Location = new System.Drawing.Point(237, 87);
  70. this.button2.Name = "button2";
  71. this.button2.Size = new System.Drawing.Size(75, 23);
  72. this.button2.TabIndex = 3;
  73. this.button2.Text = "Cancel";
  74. this.button2.UseVisualStyleBackColor = true;
  75. //
  76. // label1
  77. //
  78. this.label1.AutoSize = true;
  79. this.label1.Location = new System.Drawing.Point(9, 15);
  80. this.label1.Name = "label1";
  81. this.label1.Size = new System.Drawing.Size(37, 13);
  82. this.label1.TabIndex = 4;
  83. this.label1.Text = "Value:";
  84. //
  85. // InputDialog
  86. //
  87. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  88. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  89. this.ClientSize = new System.Drawing.Size(324, 122);
  90. this.ControlBox = false;
  91. this.Controls.Add(this.label1);
  92. this.Controls.Add(this.button2);
  93. this.Controls.Add(this.button1);
  94. this.Controls.Add(this.checkBox1);
  95. this.Controls.Add(this.textBox1);
  96. this.Name = "InputDialog";
  97. this.ShowIcon = false;
  98. this.ShowInTaskbar = false;
  99. this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
  100. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  101. this.Text = "Edit value";
  102. this.Load += new System.EventHandler(this.InputDialog_Load);
  103. this.ResumeLayout(false);
  104. this.PerformLayout();
  105. }
  106. #endregion
  107. private System.Windows.Forms.TextBox textBox1;
  108. private System.Windows.Forms.CheckBox checkBox1;
  109. private System.Windows.Forms.Button button1;
  110. private System.Windows.Forms.Button button2;
  111. private System.Windows.Forms.Label label1;
  112. }
  113. }