You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

AboutForm.Designer.cs 4.9 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. namespace Shadowsocks.View
  2. {
  3. partial class AboutForm
  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. this.titleLabel = new System.Windows.Forms.Label();
  29. this.versionLabel = new System.Windows.Forms.Label();
  30. this.authorLabel = new System.Windows.Forms.Label();
  31. this.githubLabel = new System.Windows.Forms.LinkLabel();
  32. this.SuspendLayout();
  33. //
  34. // titleLabel
  35. //
  36. this.titleLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  37. this.titleLabel.Location = new System.Drawing.Point(12, 40);
  38. this.titleLabel.Name = "titleLabel";
  39. this.titleLabel.Size = new System.Drawing.Size(260, 23);
  40. this.titleLabel.TabIndex = 0;
  41. this.titleLabel.Text = "Shadowsocks for Windows";
  42. this.titleLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  43. //
  44. // versionLabel
  45. //
  46. this.versionLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  47. this.versionLabel.Location = new System.Drawing.Point(12, 84);
  48. this.versionLabel.Name = "versionLabel";
  49. this.versionLabel.Size = new System.Drawing.Size(260, 23);
  50. this.versionLabel.TabIndex = 0;
  51. this.versionLabel.Text = "Version: 2.0.4.0";
  52. this.versionLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  53. //
  54. // authorLabel
  55. //
  56. this.authorLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  57. this.authorLabel.Location = new System.Drawing.Point(12, 139);
  58. this.authorLabel.Name = "authorLabel";
  59. this.authorLabel.Size = new System.Drawing.Size(260, 23);
  60. this.authorLabel.TabIndex = 0;
  61. this.authorLabel.Text = "By: clowwindy";
  62. this.authorLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  63. //
  64. // githubLabel
  65. //
  66. this.githubLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  67. this.githubLabel.Location = new System.Drawing.Point(13, 201);
  68. this.githubLabel.Name = "githubLabel";
  69. this.githubLabel.Size = new System.Drawing.Size(259, 23);
  70. this.githubLabel.TabIndex = 1;
  71. this.githubLabel.TabStop = true;
  72. this.githubLabel.Text = "GitHub";
  73. this.githubLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  74. this.githubLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.githubLabel_LinkClicked);
  75. //
  76. // AboutForm
  77. //
  78. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  79. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  80. this.ClientSize = new System.Drawing.Size(284, 261);
  81. this.Controls.Add(this.githubLabel);
  82. this.Controls.Add(this.authorLabel);
  83. this.Controls.Add(this.versionLabel);
  84. this.Controls.Add(this.titleLabel);
  85. this.MaximizeBox = false;
  86. this.MinimizeBox = false;
  87. this.Name = "AboutForm";
  88. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  89. this.Text = "About";
  90. this.ResumeLayout(false);
  91. }
  92. #endregion
  93. private System.Windows.Forms.Label titleLabel;
  94. private System.Windows.Forms.Label versionLabel;
  95. private System.Windows.Forms.Label authorLabel;
  96. private System.Windows.Forms.LinkLabel githubLabel;
  97. }
  98. }