⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sectionencrypt.designer.cs

📁 清华大学出版社出版的 移动应用开发宝典 张大威(2008)的附书源代码
💻 CS
📖 第 1 页 / 共 2 页
字号:
namespace ConfigSectionEncrypt
{
	partial class SectionEncrypt
	{
		/// <summary>
		/// Required designer variable.
		/// </summary>
		private System.ComponentModel.IContainer components = null;

		/// <summary>
		/// Clean up any resources being used.
		/// </summary>
		/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
		protected override void Dispose(bool disposing)
		{
			if (disposing && (components != null))
			{
				components.Dispose();
			}
			base.Dispose(disposing);
		}

		#region Windows Form Designer generated code

		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SectionEncrypt));
            this.EncryptSectionButton = new System.Windows.Forms.Button();
            this.label3 = new System.Windows.Forms.Label();
            this.PasswordTextBox = new System.Windows.Forms.TextBox();
            this.KeyTextBox = new System.Windows.Forms.TextBox();
            this.label4 = new System.Windows.Forms.Label();
            this.NewKeyButton = new System.Windows.Forms.Button();
            this.EncryptKeyButton = new System.Windows.Forms.Button();
            this.label1 = new System.Windows.Forms.Label();
            this.EncryptedKeyTextBox = new System.Windows.Forms.TextBox();
            this.SectionTabControl = new System.Windows.Forms.TabControl();
            this.SectionTabPage = new System.Windows.Forms.TabPage();
            this.OriginalTextBox = new System.Windows.Forms.TextBox();
            this.EncryptedTabPage = new System.Windows.Forms.TabPage();
            this.EncryptedTextBox = new System.Windows.Forms.TextBox();
            this.DecryptKeyButton = new System.Windows.Forms.Button();
            this.DecryptSectionButton = new System.Windows.Forms.Button();
            this.label5 = new System.Windows.Forms.Label();
            this.UsernameTextBox = new System.Windows.Forms.TextBox();
            this.label2 = new System.Windows.Forms.Label();
            this.SectionTabControl.SuspendLayout();
            this.SectionTabPage.SuspendLayout();
            this.EncryptedTabPage.SuspendLayout();
            this.SuspendLayout();
            // 
            // EncryptSectionButton
            // 
            this.EncryptSectionButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.EncryptSectionButton.Enabled = false;
            this.EncryptSectionButton.Location = new System.Drawing.Point(436, 347);
            this.EncryptSectionButton.Name = "EncryptSectionButton";
            this.EncryptSectionButton.Size = new System.Drawing.Size(107, 24);
            this.EncryptSectionButton.TabIndex = 7;
            this.EncryptSectionButton.Text = "Encrypt Section";
            this.EncryptSectionButton.UseVisualStyleBackColor = true;
            this.EncryptSectionButton.Click += new System.EventHandler(this.EncryptSectionButton_Click);
            // 
            // label3
            // 
            this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(216, 354);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(56, 13);
            this.label3.TabIndex = 7;
            this.label3.Text = "Password:";
            // 
            // PasswordTextBox
            // 
            this.PasswordTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.PasswordTextBox.Location = new System.Drawing.Point(297, 351);
            this.PasswordTextBox.Name = "PasswordTextBox";
            this.PasswordTextBox.Size = new System.Drawing.Size(114, 20);
            this.PasswordTextBox.TabIndex = 3;
            this.PasswordTextBox.UseSystemPasswordChar = true;
            this.PasswordTextBox.TextChanged += new System.EventHandler(this.PasswordTextBox_TextChanged);
            // 
            // KeyTextBox
            // 
            this.KeyTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.KeyTextBox.Location = new System.Drawing.Point(36, 6);
            this.KeyTextBox.Name = "KeyTextBox";
            this.KeyTextBox.Size = new System.Drawing.Size(508, 20);
            this.KeyTextBox.TabIndex = 0;
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Location = new System.Drawing.Point(5, 9);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(28, 13);
            this.label4.TabIndex = 10;
            this.label4.Text = "Key:";
            // 
            // NewKeyButton
            // 
            this.NewKeyButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.NewKeyButton.Location = new System.Drawing.Point(549, 4);
            this.NewKeyButton.Name = "NewKeyButton";
            this.NewKeyButton.Size = new System.Drawing.Size(107, 24);
            this.NewKeyButton.TabIndex = 1;
            this.NewKeyButton.Text = "Generate New Key";
            this.NewKeyButton.UseVisualStyleBackColor = true;
            this.NewKeyButton.Click += new System.EventHandler(this.NewKeyButton_Click);
            // 
            // EncryptKeyButton
            // 
            this.EncryptKeyButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.EncryptKeyButton.Enabled = false;
            this.EncryptKeyButton.Location = new System.Drawing.Point(82, 406);
            this.EncryptKeyButton.Name = "EncryptKeyButton";
            this.EncryptKeyButton.Size = new System.Drawing.Size(81, 24);
            this.EncryptKeyButton.TabIndex = 5;
            this.EncryptKeyButton.Text = "Encrypt Key";
            this.EncryptKeyButton.UseVisualStyleBackColor = true;
            this.EncryptKeyButton.Click += new System.EventHandler(this.EncryptKeyButton_Click);
            // 
            // label1
            // 
            this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(2, 382);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(79, 13);
            this.label1.TabIndex = 14;
            this.label1.Text = "Encrypted Key:";
            // 
            // EncryptedKeyTextBox
            // 
            this.EncryptedKeyTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.EncryptedKeyTextBox.Location = new System.Drawing.Point(82, 379);
            this.EncryptedKeyTextBox.Name = "EncryptedKeyTextBox";
            this.EncryptedKeyTextBox.Size = new System.Drawing.Size(220, 20);
            this.EncryptedKeyTextBox.TabIndex = 4;
            this.EncryptedKeyTextBox.TextChanged += new System.EventHandler(this.EncryptedKeyTextBox_TextChanged);
            // 
            // SectionTabControl
            // 
            this.SectionTabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.SectionTabControl.Controls.Add(this.SectionTabPage);
            this.SectionTabControl.Controls.Add(this.EncryptedTabPage);
            this.SectionTabControl.Location = new System.Drawing.Point(-2, 30);
            this.SectionTabControl.Name = "SectionTabControl";

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -