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

📄 viewencryptedtext.designer.cs

📁 实现了windows mobile下对短信进行加密发送
💻 CS
字号:
namespace EncrySMS
{
    partial class ViewEncryptedForm
    {
        /// <summary>
        /// 必需的设计器变量。
        /// </summary>
        private System.ComponentModel.IContainer components = null;
        private System.Windows.Forms.MainMenu mainMenu1;

        /// <summary>
        /// 清理所有正在使用的资源。
        /// </summary>
        /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region Windows 窗体设计器生成的代码

        /// <summary>
        /// 设计器支持所需的方法 - 不要
        /// 使用代码编辑器修改此方法的内容。
        /// </summary>
        private void InitializeComponent()
        {
            this.mainMenu1 = new System.Windows.Forms.MainMenu();
            this.edtEncrypt = new System.Windows.Forms.TextBox();
            this.label1 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.edtDecrypt = new System.Windows.Forms.TextBox();
            this.timer1 = new System.Windows.Forms.Timer();
            this.btnPin = new System.Windows.Forms.Button();
            this.chbAutoClose = new System.Windows.Forms.CheckBox();
            this.SuspendLayout();
            // 
            // edtEncrypt
            // 
            this.edtEncrypt.Location = new System.Drawing.Point(12, 26);
            this.edtEncrypt.Multiline = true;
            this.edtEncrypt.Name = "edtEncrypt";
            this.edtEncrypt.ReadOnly = true;
            this.edtEncrypt.Size = new System.Drawing.Size(212, 72);
            this.edtEncrypt.TabIndex = 2;
            this.edtEncrypt.TextChanged += new System.EventHandler(this.edtEncrypt_TextChanged);
            // 
            // label1
            // 
            this.label1.Location = new System.Drawing.Point(12, 7);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(79, 16);
            this.label1.Text = "收到的内容";
            // 
            // label2
            // 
            this.label2.Location = new System.Drawing.Point(12, 112);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(89, 16);
            this.label2.Text = "解密后的内容";
            // 
            // edtDecrypt
            // 
            this.edtDecrypt.Location = new System.Drawing.Point(12, 131);
            this.edtDecrypt.Multiline = true;
            this.edtDecrypt.Name = "edtDecrypt";
            this.edtDecrypt.ReadOnly = true;
            this.edtDecrypt.Size = new System.Drawing.Size(212, 72);
            this.edtDecrypt.TabIndex = 3;
            // 
            // timer1
            // 
            this.timer1.Interval = 4000;
            this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
            // 
            // btnPin
            // 
            this.btnPin.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(224)))), ((int)(((byte)(255)))));
            this.btnPin.Location = new System.Drawing.Point(12, 219);
            this.btnPin.Name = "btnPin";
            this.btnPin.Size = new System.Drawing.Size(72, 20);
            this.btnPin.TabIndex = 0;
            this.btnPin.Tag = "";
            this.btnPin.Text = "钉住";
            this.btnPin.Click += new System.EventHandler(this.btnPin_Click);
            // 
            // chbAutoClose
            // 
            this.chbAutoClose.Location = new System.Drawing.Point(142, 219);
            this.chbAutoClose.Name = "chbAutoClose";
            this.chbAutoClose.Size = new System.Drawing.Size(82, 20);
            this.chbAutoClose.TabIndex = 1;
            this.chbAutoClose.Text = "自动关闭";
            // 
            // ViewEncryptedForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
            this.AutoScroll = true;
            this.BackColor = System.Drawing.Color.LightSkyBlue;
            this.ClientSize = new System.Drawing.Size(240, 268);
            this.Controls.Add(this.chbAutoClose);
            this.Controls.Add(this.btnPin);
            this.Controls.Add(this.label2);
            this.Controls.Add(this.edtDecrypt);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.edtEncrypt);
            this.Menu = this.mainMenu1;
            this.Name = "ViewEncryptedForm";
            this.Text = "加密内容查看具";
            this.Activated += new System.EventHandler(this.ViewEncryptedForm_Activated);
            this.Closing += new System.ComponentModel.CancelEventHandler(this.ViewEncryptedForm_Closing);
            this.ResumeLayout(false);

        }

        #endregion

        private System.Windows.Forms.TextBox edtEncrypt;
        private System.Windows.Forms.Label label1;
        private System.Windows.Forms.Label label2;
        private System.Windows.Forms.TextBox edtDecrypt;
        private System.Windows.Forms.Timer timer1;
        private System.Windows.Forms.Button btnPin;
        private System.Windows.Forms.CheckBox chbAutoClose;
    }
}

⌨️ 快捷键说明

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