MessageDailog.Designer.cs 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. 
  2. namespace PaintDotNet.Preview2
  3. {
  4. partial class MessageDailog
  5. {
  6. /// <summary>
  7. /// Required designer variable.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// Clean up any resources being used.
  12. /// </summary>
  13. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Windows Form Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.button1 = new System.Windows.Forms.Button();
  30. this.button2 = new System.Windows.Forms.Button();
  31. this.label1 = new System.Windows.Forms.Label();
  32. this.SuspendLayout();
  33. //
  34. // button1
  35. //
  36. this.button1.Location = new System.Drawing.Point(286, 62);
  37. this.button1.Name = "button1";
  38. this.button1.Size = new System.Drawing.Size(66, 23);
  39. this.button1.TabIndex = 0;
  40. this.button1.Text = "否";
  41. this.button1.UseVisualStyleBackColor = true;
  42. this.button1.Click += new System.EventHandler(this.button1_Click);
  43. //
  44. // button2
  45. //
  46. this.button2.Location = new System.Drawing.Point(210, 62);
  47. this.button2.Name = "button2";
  48. this.button2.Size = new System.Drawing.Size(66, 23);
  49. this.button2.TabIndex = 0;
  50. this.button2.Text = "是";
  51. this.button2.UseVisualStyleBackColor = true;
  52. this.button2.Click += new System.EventHandler(this.button2_Click);
  53. //
  54. // label1
  55. //
  56. this.label1.AutoSize = true;
  57. this.label1.Location = new System.Drawing.Point(12, 19);
  58. this.label1.Name = "label1";
  59. this.label1.Size = new System.Drawing.Size(41, 12);
  60. this.label1.TabIndex = 1;
  61. this.label1.Text = "label1";
  62. //
  63. // MessageDailog
  64. //
  65. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  66. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  67. this.ClientSize = new System.Drawing.Size(364, 97);
  68. this.Controls.Add(this.label1);
  69. this.Controls.Add(this.button2);
  70. this.Controls.Add(this.button1);
  71. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
  72. this.Name = "MessageDailog";
  73. this.Text = "MessageDailog";
  74. this.ResumeLayout(false);
  75. this.PerformLayout();
  76. }
  77. #endregion
  78. private System.Windows.Forms.Button button1;
  79. private System.Windows.Forms.Button button2;
  80. private System.Windows.Forms.Label label1;
  81. }
  82. }