QRCodeForm.Designer.cs 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. using System.Collections.Generic;
  2. using System.Drawing;
  3. using System.IdentityModel.Tokens.Jwt;
  4. using System.Linq;
  5. using System.Text.Json;
  6. using System.Windows.Forms;
  7. using System;
  8. namespace HTEXMark
  9. {
  10. partial class QRCodeForm
  11. {
  12. /// <summary>
  13. /// Required designer variable.
  14. /// </summary>
  15. private System.ComponentModel.IContainer components = null;
  16. /// <summary>
  17. /// Clean up any resources being used.
  18. /// </summary>
  19. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  20. protected override void Dispose(bool disposing)
  21. {
  22. if (disposing && (components != null))
  23. {
  24. components.Dispose();
  25. }
  26. base.Dispose(disposing);
  27. }
  28. #region Windows Form Designer generated code
  29. /// <summary>
  30. /// Required method for Designer support - do not modify
  31. /// the contents of this method with the code editor.
  32. /// </summary>
  33. private void InitializeComponent()
  34. {
  35. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(QRCodeForm));
  36. this.privacyPolicy = new System.Windows.Forms.LinkLabel();
  37. this.termOfService = new System.Windows.Forms.LinkLabel();
  38. this.pictureBox = new System.Windows.Forms.PictureBox();
  39. ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
  40. this.SuspendLayout();
  41. //
  42. // privacyPolicy
  43. //
  44. this.privacyPolicy.AutoSize = true;
  45. this.privacyPolicy.Location = new System.Drawing.Point(124, 204);
  46. this.privacyPolicy.Name = "privacyPolicy";
  47. this.privacyPolicy.Size = new System.Drawing.Size(65, 12);
  48. this.privacyPolicy.TabIndex = 0;
  49. this.privacyPolicy.TabStop = true;
  50. this.privacyPolicy.Text = "隐私权政策";
  51. this.privacyPolicy.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.privacyPolicy_LinkClicked);
  52. //
  53. // termOfService
  54. //
  55. this.termOfService.AutoSize = true;
  56. this.termOfService.Location = new System.Drawing.Point(12, 204);
  57. this.termOfService.Name = "termOfService";
  58. this.termOfService.Size = new System.Drawing.Size(53, 12);
  59. this.termOfService.TabIndex = 1;
  60. this.termOfService.TabStop = true;
  61. this.termOfService.Text = "服务条款";
  62. this.termOfService.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.termOfService_LinkClicked);
  63. //
  64. // pictureBox
  65. //
  66. this.pictureBox.Location = new System.Drawing.Point(1, 1);
  67. this.pictureBox.Name = "pictureBox";
  68. this.pictureBox.Size = new System.Drawing.Size(200, 200);
  69. this.pictureBox.TabIndex = 2;
  70. this.pictureBox.TabStop = false;
  71. //
  72. // QRCodeForm
  73. //
  74. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  75. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  76. this.ClientSize = new System.Drawing.Size(201, 218);
  77. this.Controls.Add(this.pictureBox);
  78. this.Controls.Add(this.termOfService);
  79. this.Controls.Add(this.privacyPolicy);
  80. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  81. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  82. this.MaximizeBox = false;
  83. this.MinimizeBox = false;
  84. this.Name = "QRCodeForm";
  85. this.Text = "请使用HiTA扫码登录...";
  86. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.QRCodeForm_FormClosed);
  87. this.Load += new System.EventHandler(this.FormLoad);
  88. ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
  89. this.ResumeLayout(false);
  90. this.PerformLayout();
  91. }
  92. #endregion
  93. private System.Windows.Forms.LinkLabel privacyPolicy;
  94. private System.Windows.Forms.LinkLabel termOfService;
  95. private System.Windows.Forms.PictureBox pictureBox;
  96. }
  97. }