FormWinmergePathSetting.Designer.cs 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. namespace ProcedureComparer
  2. {
  3. partial class FormWinmergePathSetting
  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. label1 = new Label();
  29. tb_Path = new TextBox();
  30. btn_Path = new Button();
  31. btn_Save = new Button();
  32. SuspendLayout();
  33. //
  34. // label1
  35. //
  36. label1.AutoSize = true;
  37. label1.Location = new Point(12, 9);
  38. label1.Name = "label1";
  39. label1.Size = new Size(90, 15);
  40. label1.TabIndex = 0;
  41. label1.Text = "WinMerge Path";
  42. //
  43. // tb_Path
  44. //
  45. tb_Path.Enabled = false;
  46. tb_Path.Location = new Point(107, 6);
  47. tb_Path.Name = "tb_Path";
  48. tb_Path.ReadOnly = true;
  49. tb_Path.Size = new Size(499, 23);
  50. tb_Path.TabIndex = 1;
  51. //
  52. // btn_Path
  53. //
  54. btn_Path.Location = new Point(612, 6);
  55. btn_Path.Name = "btn_Path";
  56. btn_Path.Size = new Size(87, 23);
  57. btn_Path.TabIndex = 2;
  58. btn_Path.Text = "Path";
  59. btn_Path.UseVisualStyleBackColor = true;
  60. btn_Path.Click += btn_Path_Click;
  61. //
  62. // btn_Save
  63. //
  64. btn_Save.Location = new Point(705, 5);
  65. btn_Save.Name = "btn_Save";
  66. btn_Save.Size = new Size(87, 23);
  67. btn_Save.TabIndex = 3;
  68. btn_Save.Text = "Save";
  69. btn_Save.UseVisualStyleBackColor = true;
  70. btn_Save.Click += btn_Save_Click;
  71. //
  72. // FormWinmergePathSetting
  73. //
  74. AutoScaleDimensions = new SizeF(7F, 15F);
  75. AutoScaleMode = AutoScaleMode.Font;
  76. ClientSize = new Size(800, 36);
  77. Controls.Add(btn_Save);
  78. Controls.Add(btn_Path);
  79. Controls.Add(tb_Path);
  80. Controls.Add(label1);
  81. FormBorderStyle = FormBorderStyle.FixedSingle;
  82. MaximizeBox = false;
  83. MinimizeBox = false;
  84. Name = "FormWinmergePathSetting";
  85. StartPosition = FormStartPosition.CenterParent;
  86. Text = "Setting";
  87. Load += FormWinmergePathSetting_Load;
  88. ResumeLayout(false);
  89. PerformLayout();
  90. }
  91. #endregion
  92. private Label label1;
  93. private TextBox tb_Path;
  94. private Button btn_Path;
  95. private Button btn_Save;
  96. }
  97. }