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; }
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; }