There are several properties that all (or some) controls have in common.

Use an ampersand (&) in the title to give a control a mnemonic (keyboard accelerator). For example, a Check Box control with the label A&utomatic would appear as Automatic and allow the user to press Alt + U to activate the control. For controls like the Edit control (that don’t display a title) you can assign a mnemonic using a separate Static text control as a label. If you want an actual ampersand to appear in the title you need to double it (e.g. This && That).