Menu for WPF | ComponentOne
Menu Overview / Flat Menu / Boundary Detection
In This Topic
    Boundary Detection
    In This Topic

    Boundary detection ensures that the menus a user opens will always stay within the page bounds. This is helpful if you have several nested submenus within your menu, as these menus can expand until they're beyond the scope of a project page.

    The image below illustrates a menu contained with a boundary large enough to allow for the expansion of two submenus.

     

    The image below illustrates what that same menu would look like if the boundaries were shifted several centimeters to the left with the boundary detection feature disabled. Observe that the menu is cut off despite there being an extensive blank space to the left of the control.

     

     The image below illustrates that same menu and same boundary, only this time boundary detection is enabled. Observe that the submenus shift to the left to avoid being cut off by the tight boundary on the right side of the page.

     

    By default, boundary detection is disabled, but you can enable it by setting the DetectBoundaries property to True.

    To enable boundary detection, use one of the following methods:

    Complete the following steps:

    1. Add DetectBoundaries="True" to the <c1:C1Menu> tag.
    2. Run the program.

    Complete the following steps:

    1. In Source view, locate the <c1:C1MenuItem> tag for the item you wish to make checkable and add x:Name="C1Menu1" to it. This will give the item a unique identifier that you can use in code.
    2. Enter Code view and add the following code beneath the InitializeComponent() method:
    Visual Basic
    Copy Code
    C1Menu1.DetectBoundaries = True
    

     

    C#
    Copy Code
    C1Menu1.DetectBoundaries = true;
    
    1. Run the program.

    Complete the following steps:

    1. Select the C1Menu control.

    The control's properties appear underneath the Properties window.

    1. Select the DetectBoundaries check box.
    2. Run the program.