Showing the Application Bar with C1Popup Open

By default, the application bar will hide when C1Popup is opened. You can control this behavior by setting the HideApplicationBarWhenOpen property. You can customize this property at design time, in XAML, and in code.

At Design Time

To set the HideApplicationBarWhenOpen property in Blend or Visual Studio, complete the following steps:

1.   Click the C1Popup control once to select it.

2.   Navigate to the Properties tab, and unselect the check box next to the HideApplicationBarWhenOpen property.

This will set the HideApplicationBarWhenOpen property to show the application bar when C1Popup is open.

In XAML

For example, to set the HideApplicationBarWhenOpen property add HideApplicationBarWhenOpen="False" to the <c1:C1Popup> tag so that it appears similar to the following:

<c1:C1Popup x:Name="C1Popup1" HideApplicationBarWhenOpen="False"></c1:C1Popup>

In Code

For example, to set the HideApplicationBarWhenOpen property add the following code to your project:

      Visual Basic

      C#

What You've Accomplished

The application bar will no longer be hidden when the popup is displayed.


Send us comments about this topic.
Copyright © GrapeCity, inc. All rights reserved.