InputDialog.Designer.cs 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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. this.textBox1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textBox1_KeyDown);
  40. this.textBox1.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox1_KeyPress);
  41. //
  42. // checkBox1
  43. //
  44. this.checkBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  45. this.checkBox1.AutoSize = true;
  46. this.checkBox1.Checked = true;
  47. this.checkBox1.CheckState = System.Windows.Forms.CheckState.Checked;
  48. this.checkBox1.Location = new System.Drawing.Point(12, 91);
  49. this.checkBox1.Name = "checkBox1";
  50. this.checkBox1.Size = new System.Drawing.Size(142, 17);
  51. this.checkBox1.TabIndex = 1;
  52. this.checkBox1.Text = "Use this value for all files";
  53. this.checkBox1.UseVisualStyleBackColor = true;
  54. this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
  55. //
  56. // button1
  57. //
  58. this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  59. this.button1.DialogResult = System.Windows.Forms.DialogResult.OK;
  60. this.button1.Location = new System.Drawing.Point(160, 87);
  61. this.button1.Name = "button1";
  62. this.button1.Size = new System.Drawing.Size(75, 23);
  63. this.button1.TabIndex = 2;
  64. this.button1.Text = "OK";
  65. this.button1.UseVisualStyleBackColor = true;
  66. //
  67. // button2
  68. //
  69. this.button2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  70. this.button2.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  71. this.button2.Location = new System.Drawing.Point(237, 87);
  72. this.button2.Name = "button2";
  73. this.button2.Size = new System.Drawing.Size(75, 23);
  74. this.button2.TabIndex = 3;
  75. this.button2.Text = "Cancel";
  76. this.button2.UseVisualStyleBackColor = true;
  77. //
  78. // label1
  79. //
  80. this.label1.AutoSize = true;
  81. this.label1.Location = new System.Drawing.Point(9, 15);
  82. this.label1.Name = "label1";
  83. this.label1.Size = new System.Drawing.Size(37, 13);
  84. this.label1.TabIndex = 4;
  85. this.label1.Text = "Value:";
  86. //
  87. // InputDialog
  88. //
  89. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  90. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  91. this.ClientSize = new System.Drawing.Size(324, 122);
  92. this.ControlBox = false;
  93. this.Controls.Add(this.label1);
  94. this.Controls.Add(this.button2);
  95. this.Controls.Add(this.button1);
  96. this.Controls.Add(this.checkBox1);
  97. this.Controls.Add(this.textBox1);
  98. this.Name = "InputDialog";
  99. this.ShowIcon = false;
  100. this.ShowInTaskbar = false;
  101. this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
  102. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  103. this.Text = "Edit value";
  104. this.TopMost = true;
  105. this.Load += new System.EventHandler(this.InputDialog_Load);
  106. this.ResumeLayout(false);
  107. this.PerformLayout();
  108. }
  109. #endregion
  110. private System.Windows.Forms.TextBox textBox1;
  111. private System.Windows.Forms.CheckBox checkBox1;
  112. private System.Windows.Forms.Button button1;
  113. private System.Windows.Forms.Button button2;
  114. private System.Windows.Forms.Label label1;
  115. }
  116. }