Example #1
0
        void Window_Load(object sender, EventArgs e)
        {
            string url = "http://poe.trade";

            ControlGenerator ControlGenerator = new ControlGenerator(this, url);
            bool success = ControlGenerator.GenerateAllControls();
            if (!success)
                return;

            this.AutoSizeMode = AutoSizeMode.GrowAndShrink;
            this.AutoSize = true;
            this.Text = "Rhoa";
            this.Show();
            this.Focus();
            this.TopMost = true;
        }
Example #2
0
        void Window_Load(object sender, EventArgs e)
        {
            string url = "http://poe.trade";

            ControlGenerator ControlGenerator = new ControlGenerator(this, url);
            bool             success          = ControlGenerator.GenerateAllControls();

            if (!success)
            {
                return;
            }

            this.AutoSizeMode = AutoSizeMode.GrowAndShrink;
            this.AutoSize     = true;
            this.Text         = "Rhoa";
            this.Show();
            this.Focus();
            this.TopMost = true;
        }