Animating the Dialog Window
In This Topic
The WijDialog control supports animation. You can control animation when the dialog window is hidden, expanded, collapsed, or opened.
- Create an ASP.NET Web application with a ScriptManager control and install Juice UI and the Wijmo Juice libraries to your project via NuGet.
- Add a standard Panel control to the main content of your page.
- Insert the following markup within the Panel markup to create the dialog window:
<h2>Dialog</h2>
<br />
<span>This is the default dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the 'x' icon.</span>
- Use the following markup to add a WijDialog control to the page and set the TargetControlID to Panel1.
<cc1:WijDialog ID="Panel1_WijDialog" runat="server"
TargetControlID="Panel1">
</cc1:WijDialog>
- Select View | Properties Window in the Visual Studio menu.
- Click the drop-down list at the top of the Properties window and select Panel1_WijDialog.
- Set the Show property to bounce.
- Set the Hide property to slide.
- Expand the CollapsingAnimation | Animated property and set the Effect property to fade.
- Expand the ExpandingAnimation | Animated property and set the Effect property to explode. Your markup should look similar to this:
<cc1:WijDialog ID="Panel1_WijDialog" runat="server"
CloseOnEscape="False" Hide="slide" Show="bounce" TargetControlID="Panel1">
<CollapsingAnimation>
<Animated Effect="fade" />
</CollapsingAnimation>
<ExpandingAnimation>
<Animated Effect="explode" />
</ExpandingAnimation>
</cc1:WijDialog>
- Run the application and minimize/maximize, close, and open the dialog window to see the animation effects.