using System.Collections.Generic;
using System.Drawing;
using System.IdentityModel.Tokens.Jwt;
using System.Linq;
using System.Text.Json;
using System.Windows.Forms;
using System;
namespace HTEXMark
{
partial class QRCodeForm
{
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(QRCodeForm));
this.privacyPolicy = new System.Windows.Forms.LinkLabel();
this.termOfService = new System.Windows.Forms.LinkLabel();
this.pictureBox = new System.Windows.Forms.PictureBox();
((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
this.SuspendLayout();
//
// privacyPolicy
//
this.privacyPolicy.AutoSize = true;
this.privacyPolicy.Location = new System.Drawing.Point(124, 204);
this.privacyPolicy.Name = "privacyPolicy";
this.privacyPolicy.Size = new System.Drawing.Size(65, 12);
this.privacyPolicy.TabIndex = 0;
this.privacyPolicy.TabStop = true;
this.privacyPolicy.Text = "隐私权政策";
this.privacyPolicy.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.privacyPolicy_LinkClicked);
//
// termOfService
//
this.termOfService.AutoSize = true;
this.termOfService.Location = new System.Drawing.Point(12, 204);
this.termOfService.Name = "termOfService";
this.termOfService.Size = new System.Drawing.Size(53, 12);
this.termOfService.TabIndex = 1;
this.termOfService.TabStop = true;
this.termOfService.Text = "服务条款";
this.termOfService.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.termOfService_LinkClicked);
//
// pictureBox
//
this.pictureBox.Location = new System.Drawing.Point(1, 1);
this.pictureBox.Name = "pictureBox";
this.pictureBox.Size = new System.Drawing.Size(200, 200);
this.pictureBox.TabIndex = 2;
this.pictureBox.TabStop = false;
//
// QRCodeForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(201, 218);
this.Controls.Add(this.pictureBox);
this.Controls.Add(this.termOfService);
this.Controls.Add(this.privacyPolicy);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "QRCodeForm";
this.Text = "请使用HiTA扫码登录...";
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.QRCodeForm_FormClosed);
this.Load += new System.EventHandler(this.FormLoad);
((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.LinkLabel privacyPolicy;
private System.Windows.Forms.LinkLabel termOfService;
private System.Windows.Forms.PictureBox pictureBox;
}
}