Prev | Next |
Modeling UI Dialogs
The Win32 User Interface MDG Technology provides the tools to help you design a user interface that closely emulates the visual style and available options for Windows dialogs.
Win32 Dialog
These user interface components are supported, each matching the equivalent-named RC resource.
Component |
Details |
---|---|
win32Dialog |
The equivalent of the RC format DIALOG and DIALOGEX resources. |
win32StaticText |
The equivalent of the RC format LTEXT, RTEXT, CTEXT resources. |
win32Edit |
The equivalent of the RC format EDITTEXT resource. |
win32Button |
The equivalent of the RC format BUTTON, DEFPUSHBUTTON and other resources. |
win32CheckBox |
The equivalent of the RC format CHECKBOX resource. |
win32ScrollBarH |
The equivalent of the RC format SCROLLBAR resource with SBS_HORZ style |
win32ScrollBarV |
The equivalent of the RC format SCROLLBAR resource with SBS_VERT style. |
win32GroupBox |
The equivalent of the RC format GROUPBOX resource. |
win32ComboBox |
The equivalent of the RC format COMBOBOX resource. Note: When you initially drag the 'Combo Box' icon - of type 'Drop Down' or 'Drop Down List' - onto a diagram, the middle 'tracking handle' on each side of the element is white, indicating that you can only adjust the width of the element. To adjust the height of the element as well as the width, click on the drop-down arrow part of the image; the middle 'tracking handle' on the bottom edge is now white, indicating that you can drag the base down to set the virtual height (the height of the element when it is expanded to show all possible values in the drop-down list). |
win32ListBox |
The equivalent of the RC format LISTBOX resource. |
win32RadioButton |
The equivalent of the RC format RADIOBUTTON resource. |
win32TabPane |
The equivalent of the RC format TABPANE resource. |
win32Picture |
The equivalent of the RC format STATIC resource with SS_BITMAP style. The control can render an image when applied from your model. An image can be applied by selecting it first and pressing Image Manager. Afterwards, you might need to change the value of the resource ID in the appropriate Tagged Value. to display the |
win32CustomControl |
The equivalent of the RC format CONTROL resource. |