Exemplo n.º 1
0
        public App()
        {
            this.SetUpForm(); // SetUpForm.cs

            var mozNet = new QuirkStart()
            {
                Nick   = "Tongue",
                Port   = 6667,
                Server = "irc.mozilla.org",
                User   = "******",
            };

            quirk = new Quirk(mozNet);

            this.buffer    = new Buffer(this, quirk);
            quirk.NewLine += new Quirk.NewLineDel(Buffer.AddLine);
            App.LoadAttributeLovers(typeof(DesiresAppControlsAttribute), this);

            PostOffice();
            quirk.Start();
        }