About.Designer.cs 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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(135, 98);
  36. this.button_OK.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  37. this.button_OK.Name = "button_OK";
  38. this.button_OK.Size = new System.Drawing.Size(77, 25);
  39. this.button_OK.TabIndex = 0;
  40. this.button_OK.Text = "OK";
  41. this.button_OK.UseVisualStyleBackColor = true;
  42. this.button_OK.Click += new System.EventHandler(this.button_OK_Click);
  43. //
  44. // richTextBox1
  45. //
  46. this.richTextBox1.BackColor = System.Drawing.SystemColors.Menu;
  47. this.richTextBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
  48. this.richTextBox1.Cursor = System.Windows.Forms.Cursors.No;
  49. this.richTextBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 14F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  50. this.richTextBox1.ForeColor = System.Drawing.SystemColors.HotTrack;
  51. this.richTextBox1.Location = new System.Drawing.Point(15, 11);
  52. this.richTextBox1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  53. this.richTextBox1.Name = "richTextBox1";
  54. this.richTextBox1.Size = new System.Drawing.Size(331, 69);
  55. this.richTextBox1.TabIndex = 1;
  56. this.richTextBox1.Text = "";
  57. //
  58. // About
  59. //
  60. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  61. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  62. this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
  63. this.ClientSize = new System.Drawing.Size(377, 143);
  64. this.Controls.Add(this.richTextBox1);
  65. this.Controls.Add(this.button_OK);
  66. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
  67. this.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  68. this.MaximizeBox = false;
  69. this.MinimizeBox = false;
  70. this.Name = "About";
  71. this.ShowIcon = false;
  72. this.ShowInTaskbar = false;
  73. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  74. this.Text = "About";
  75. this.Load += new System.EventHandler(this.About_Load);
  76. this.ResumeLayout(false);
  77. }
  78. #endregion
  79. private System.Windows.Forms.Button button_OK;
  80. private System.Windows.Forms.RichTextBox richTextBox1;
  81. }
  82. }