views:

66

answers:

1

How to have a function in C# to run the window identification, which will show the numbers 1, 2, ... on the screen same way as we do it by right click on the screen (properties) then we go to Screen Resolution and show the numbers by clicking on Identify.

Can we do that in C#?

+3  A: 

Yes, look at the Screen class: http://msdn.microsoft.com/en-us/library/system.windows.forms.screen.aspx

You can get a list of all screens through Screen.AllScreens.

Lloyd
Thank you, I know this part, but I mean how to make my system Show a big white numbers in the middle of the screens using c#! you know what I mean?
Data-Base
Then you need to do a search for drawing on the desktop, quite a common question, check out this for example - http://stackoverflow.com/questions/1536141/how-to-draw-directly-on-the-windows-desktop-c
Lloyd