InputMatControl.Designer.cs 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. namespace PaintDotNet.CustomControl
  2. {
  3. partial class InputMatControl
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 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 组件设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.button2 = new System.Windows.Forms.Button();
  29. this.textBox2 = new PaintDotNet.CustomControl.FileNameTextBox();
  30. this.SuspendLayout();
  31. //
  32. // button2
  33. //
  34. this.button2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  35. | System.Windows.Forms.AnchorStyles.Right)));
  36. this.button2.Location = new System.Drawing.Point(170, 0);
  37. this.button2.Name = "button2";
  38. this.button2.Size = new System.Drawing.Size(70, 21);
  39. this.button2.TabIndex = 12;
  40. this.button2.Text = "选择";
  41. this.button2.UseVisualStyleBackColor = true;
  42. this.button2.Click += new System.EventHandler(this.button2_Click);
  43. //
  44. // textBox2
  45. //
  46. this.textBox2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  47. | System.Windows.Forms.AnchorStyles.Left)
  48. | System.Windows.Forms.AnchorStyles.Right)));
  49. this.textBox2.Enabled = false;
  50. this.textBox2.Location = new System.Drawing.Point(0, 0);
  51. this.textBox2.Name = "textBox2";
  52. this.textBox2.Size = new System.Drawing.Size(164, 21);
  53. this.textBox2.TabIndex = 11;
  54. //
  55. // InputMatControl
  56. //
  57. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  58. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  59. this.Controls.Add(this.button2);
  60. this.Controls.Add(this.textBox2);
  61. this.Name = "InputMatControl";
  62. this.Size = new System.Drawing.Size(240, 21);
  63. this.ResumeLayout(false);
  64. this.PerformLayout();
  65. }
  66. #endregion
  67. private System.Windows.Forms.Button button2;
  68. private FileNameTextBox textBox2;
  69. }
  70. }