MDI Resize in WPF Tabbed MDI Form (DocumentContainer)

7 May 20211 minute to read

Document Container provides options to resize its elements. Setting AllowMDIResize property to true__, will enable the end users to resize the container elements.

To set this property, use the below code.

  • XAML
  • <!-- Adding Document Container -->
    
    <syncfusion:DocumentContainer Name="DocContainer" IsAllowMDIResize="True"  Mode="MDI">
    
    <FlowDocumentScrollViewer syncfusion:DocumentContainer.Header="Features">
    
    </FlowDocumentScrollViewer>
    
    …....
    
    …....
    
    </syncfusion:DocumentContainer>