About.Designer.cs 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. 
  2. namespace OTSMeasureApp
  3. {
  4. partial class About
  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.button_OK = new System.Windows.Forms.Button();
  30. this.richTextBox1 = new System.Windows.Forms.RichTextBox();
  31. this.SuspendLayout();
  32. //
  33. // button_OK
  34. //
  35. this.button_OK.Location = new System.Drawing.Point(444, 109);
  36. this.button_OK.Name = "button_OK";
  37. this.button_OK.Size = new System.Drawing.Size(115, 38);
  38. this.button_OK.TabIndex = 0;
  39. this.button_OK.Text = "OK";
  40. this.button_OK.UseVisualStyleBackColor = true;
  41. this.button_OK.Click += new System.EventHandler(this.button_OK_Click);
  42. //
  43. // richTextBox1
  44. //
  45. this.richTextBox1.BackColor = System.Drawing.SystemColors.Menu;
  46. this.richTextBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
  47. this.richTextBox1.Cursor = System.Windows.Forms.Cursors.No;
  48. this.richTextBox1.Font = new System.Drawing.Font("幼圆", 14F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  49. this.richTextBox1.ForeColor = System.Drawing.SystemColors.HotTrack;
  50. this.richTextBox1.Location = new System.Drawing.Point(22, 33);
  51. this.richTextBox1.Name = "richTextBox1";
  52. this.richTextBox1.Size = new System.Drawing.Size(496, 61);
  53. this.richTextBox1.TabIndex = 1;
  54. this.richTextBox1.Text = "";
  55. //
  56. // About
  57. //
  58. this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
  59. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  60. this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
  61. this.ClientSize = new System.Drawing.Size(565, 160);
  62. this.Controls.Add(this.richTextBox1);
  63. this.Controls.Add(this.button_OK);
  64. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
  65. this.MaximizeBox = false;
  66. this.MinimizeBox = false;
  67. this.Name = "About";
  68. this.ShowIcon = false;
  69. this.ShowInTaskbar = false;
  70. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  71. this.Text = "About";
  72. this.Load += new System.EventHandler(this.About_Load);
  73. this.ResumeLayout(false);
  74. }
  75. #endregion
  76. private System.Windows.Forms.Button button_OK;
  77. private System.Windows.Forms.RichTextBox richTextBox1;
  78. }
  79. }