This section provides a visual and descriptive overview of the elements that comprise the C1Window control. Like a typical dialog box, the C1Window control includes two main elements: a header and a content area:
Header
The header area includes the typical caption bar elements including title text and Minimize, Maximize, and Close buttons:
You can set the text in the header with the Header property. You can set the visibility of the buttons using the ShowCloseButton, ShowMaximizeButton, and ShowMinimizeButton properties. By default all three properties are True and the buttons are visible. You can also set the Header property to a UIElement. For example, this would allow you to add an icon next to the text in the caption bar.
Content Area
The content area of the C1Window control can be set using the Content property. The content area can contain controls, a panel (such as a Grid or StackPanel) that contains controls, text, or other elements. You can, for example, set the Content property to a UserControl that contains many controls and elements.