What naming conventions do you use for user interface elements (including dialog boxes)?
Controls: I use [Descriptive Name][Control Type] (e.g. OKButton, MainTableLayout)
Windows: I use [Descriptive Name]Window (e.g. SearchWindow, CustomerListWindow)
Occasionally, I will shorten a control type name if it is still legible ("Grid" instead of "DataGridView")
What are your conventions, and why do you use them?