User Interface Models

From RAD Studio
Jump to: navigation, search

Go Up to GUI Applications

Any form can be implemented as a single document interface (SDI) or multiple document interface (MDI) form:

  • An SDI application normally contains a single document view. To make your form an SDI application, set the FormStyle property of the Form object to fsNormal.
  • In an MDI application, more than one document or child window can be opened within a single parent window. This is common in applications such as spreadsheets or word processors.

For more information on developing the UI for an application, see Developing the application user interface.

See Also