Full screen application

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm developing a POS application and am looking into ways of making it a full
screen application. I found that I can use Direct3D. Is this the usual way
of implementing a full screen windows application? Are there other better or
industry practices in doing this? Any resources on this topic with C#?
 
Create a form with FormBorderStyle set to FixedToolWindow and, in the form
load, set the FormWindowState property to Maximized and set TopMost equal to
True. No need to use directX.

--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
 
Yes, I try it, and it works but how can we do if we want to hide the windows
main tool bar????

That is possible ??? without DirectX ??

Thanks a lot
 
You will need to clear the Text Property or set it to string.empty, and
set ControlBox property to false.

hope this helps

Issam Qadan
 
Back
Top