I m creating an full screen application! But dont know how make it fullscreen (i.e the buttons minimize, maximize, and close button should not appear on screen).

Recommended Answers

All 6 Replies

Try:

this.WindowState = FormWindowState.Maximized;
this.FormBorderStyle = FormBorderStyle.None;

You will need to change above code to maximize to full screen as follows

this.FormBorderStyle = FormBorderStyle.None;
this.WindowState = FormWindowState.Maximized;

The code posted by Mitja Bonca will make it fullscreen but it will not hide taskbar, so if u want to hide taskbar too then use this code else use Bonca's code. Good Luck!

lol, what I wrote?

commented: lots of ego! cant take judgement! +0

n wat if i prove my point?

Hey Mitja Bonca heres the source file. I hope u will understand it. If not keep ur ego out of ur mind then u might understand else ask me I will post another file with comments for u.

Andy90 I hope this will help you. Good Luck!

????? mark it as solved andy

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.