Showing the System Tray with C1Popup Open

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

At Design Time

To set the HideTrayBarWhenOpen 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 HideTrayBarWhenOpen property.

This will set the HideTrayBarWhenOpen property to show the system tray when C1Popup is open.

In XAML

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

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

In Code

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

      Visual Basic

      C#

What You've Accomplished

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

 


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