I need to maximize a window in background, meaning without activating (focusing) it. SetWindowPlacement function doesn\'t offer this.. Any ideas?
WINDOWP
Please use the below code at the time of windows load
private void Form1_Load(object sender, EventArgs e) { this.WindowState = FormWindowState.Maximized; }
This will maximise your window