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

📄 lang.cs

📁 EBot source for the popular MMORPG World of Warcraft
💻 CS
字号:
namespace WoWBot
{
    using Microsoft.VisualBasic.CompilerServices;
    using System;
    using System.ComponentModel;
    using System.Diagnostics;
    using System.Drawing;
    using System.Runtime.CompilerServices;
    using System.Windows.Forms;

    [DesignerGenerated]
    public class Lang : Form
    {
        private IContainer b;
        [AccessedThroughProperty("Button1")]
        private Button b;
        [AccessedThroughProperty("LangTexte")]
        private TextBox b;
        [AccessedThroughProperty("LangText")]
        private TextBox b;

        [DebuggerNonUserCode]
        public Lang()
        {
            base.Load += new EventHandler(this.a);
            this.a();
        }

        [DebuggerStepThrough]
        private void a()
        {
            this.LangText = new TextBox();
            this.Button1 = new Button();
            this.LangTexte = new TextBox();
            this.SuspendLayout();
            Point point = new Point(13, 13);
            this.LangText.Location = point;
            this.LangText.Multiline = true;
            this.LangText.Name = "LangText";
            Size size = new Size(410, 290);
            this.LangText.Size = size;
            this.LangText.TabIndex = 0;
            point = new Point(13, 0x135);
            this.Button1.Location = point;
            this.Button1.Name = "Button1";
            size = new Size(0x4b, 0x17);
            this.Button1.Size = size;
            this.Button1.TabIndex = 1;
            this.Button1.Text = "Button1";
            this.Button1.UseVisualStyleBackColor = true;
            point = new Point(0x1ad, 13);
            this.LangTexte.Location = point;
            this.LangTexte.Multiline = true;
            this.LangTexte.Name = "LangTexte";
            size = new Size(410, 290);
            this.LangTexte.Size = size;
            this.LangTexte.TabIndex = 2;
            SizeF ef = new SizeF(6f, 13f);
            this.AutoScaleDimensions = ef;
            this.AutoScaleMode = AutoScaleMode.Font;
            size = new Size(0x354, 0x14f);
            this.ClientSize = size;
            this.Controls.Add(this.LangTexte);
            this.Controls.Add(this.Button1);
            this.Controls.Add(this.LangText);
            this.FormBorderStyle = FormBorderStyle.FixedDialog;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "Lang";
            this.ShowInTaskbar = false;
            this.StartPosition = FormStartPosition.CenterParent;
            this.Text = "Lang";
            this.ResumeLayout(false);
            this.PerformLayout();
        }

        private void a(object b, EventArgs b)
        {
        }

        private void b(object b, EventArgs b)
        {
        }

        [DebuggerNonUserCode]
        protected override void Dispose(bool disposing)
        {
            try
            {
                if (disposing && (this.b != null))
                {
                    this.b.Dispose();
                }
            }
            finally
            {
                base.Dispose(disposing);
            }
        }

        internal virtual Button Button1
        {
            [DebuggerNonUserCode]
            get
            {
                return this.b;
            }
            [MethodImpl(MethodImplOptions.Synchronized), DebuggerNonUserCode]
            set
            {
                EventHandler handler = new EventHandler(this.b);
                if (this.b != null)
                {
                    this.b.Click -= handler;
                }
                this.b = value;
                if (this.b != null)
                {
                    this.b.Click += handler;
                }
            }
        }

        internal virtual TextBox LangText
        {
            [DebuggerNonUserCode]
            get
            {
                return this.b;
            }
            [MethodImpl(MethodImplOptions.Synchronized), DebuggerNonUserCode]
            set
            {
                this.b = value;
            }
        }

        internal virtual TextBox LangTexte
        {
            [DebuggerNonUserCode]
            get
            {
                return this.b;
            }
            [MethodImpl(MethodImplOptions.Synchronized), DebuggerNonUserCode]
            set
            {
                this.b = value;
            }
        }
    }
}

⌨️ 快捷键说明

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