Lecture-3
Lecture-3
User standards
Attention to important buttons
Using icons
Using headers
Use message boxes
Use radio button and combo boxes
Use navigation controllers
Using fonts, colors and other related things
Use Standards
Headers are the perfect way to explain the entire dialog in a single
sentence.
Headers work more effectively than normal description labels
because they are the first thing that a user sees when the dialog
pops up.
There a few things you should keep in mind when designing
headers:
Make sure the background color is different.
If possible, keep your header's height under 150 pixels.
If you have a title label with a font over 10 pt in size, use Arial, or Franklin
Gothic Medium.
Use Custom Message Boxes
When you have to ask your user a question that can't be answered with
a simple yes/no or OK/cancel, it becomes complicated.
The Microsoft .NET Framework makes it easy to implement custom
dialogs.
You can use all DialogResult members. These same options are used
by the standard MessageBox.Show method.
Alternatively, you can just set the dialog's AcceptButton property to
btnOK, and the CancelButton property to btnCancel.
RadioButtons or ComboBoxes?
The little things can annoy you, but ignoring them can
impact the impression you make.
These kinds of "little things" are the core of the overall
impression. Your application's UI and UX are what users
will judge your application.
If they see obvious bugs in your UI, they may perceive
your application to be less powerful and effective.
Which is better? Why?
Conclusion