Search Results

0
votes

How to show compulsory fields on a windows form

I would use the ErrorProvider control, possibly with a different icon to represent "required" as opposed to "in error". I would also ensure the fields start with error icon shown next to them and t …
0
votes

How to determine the orientation of the screen in C# for mobile devices?

Just guessing but my first attempt would be: var rect = System.Windows.Forms.Screen.PrimaryScreen.Bounds; // or var rect = System.Windows.Forms.Screen.PrimaryScreen.WorkingArea; va …