Bind animate target value to Canvas(Window) width : Binding « Windows Presentation Foundation « VB.Net

Home
VB.Net
1.2D
2.Application
3.Class
4.Data Structure
5.Data Types
6.Database ADO.net
7.Development
8.Event
9.File Directory
10.Generics
11.GUI
12.Language Basics
13.LINQ
14.Network Remote
15.Security
16.Thread
17.Windows Presentation Foundation
18.Windows System
19.XML
20.XML LINQ
VB.Net Tutorial
VB.Net by API
VB.Net » Windows Presentation Foundation » BindingScreenshots 
Bind animate target value to Canvas(Window) width
Bind animate target value to Canvas(Window) width
       

<Canvas xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Name="canv">

    <Ellipse Name="elips" Fill="Blue" Width="8" Height="8" /> 

    <Canvas.Triggers>
        <EventTrigger RoutedEvent="Canvas.SizeChanged">
            <BeginStoryboard>
                <Storyboard TargetName="elips">
                    <DoubleAnimation Storyboard.TargetProperty="(Canvas.Left)"
                        BeginTime="-0:0:1"
                        Duration="0:0:2"
                        RepeatBehavior="Forever" AutoReverse="True"
                        From="0" To="{Binding ElementName=canv, Path=ActualWidth}" />

                    <DoubleAnimation Storyboard.TargetProperty="(Canvas.Top)"
                        Duration="0:0:2"
                        RepeatBehavior="Forever" AutoReverse="True"
                        From="0" To="{Binding ElementName=canv, Path=ActualHeight}" />
                </Storyboard>
            </BeginStoryboard>
        </EventTrigger>
    </Canvas.Triggers>
</Canvas>

   
    
    
    
    
    
    
  
Related examples in the same category
1.Bind to a Property of a UI ElementBind to a Property of a UI Element
2.Bind a Property of an Element to ItselfBind a Property of an Element to Itself
3.Specify a Default Value for a BindingSpecify a Default Value for a Binding
4.Create a Two-Way BindingCreate a Two-Way Binding
5.Debug Bindings Using Attached PropertiesDebug Bindings Using Attached Properties
6.String Array ResourceString Array Resource
7.Display Current Date and Time: binding the DateTime.Now to LabelDisplay Current Date and Time: binding the DateTime.Now to Label
8.One way and two way bindingOne way and two way binding
9.Custom Element Binding WindowCustom Element Binding Window
10.Get XmlElement from Bounded viewGet XmlElement from Bounded view
11.Customize UpdateSourceExceptionFilterCustomize UpdateSourceExceptionFilter
12.Assign your own class to DataContent and bind to TextBoxAssign your own class to DataContent and bind to TextBox
13.Async bindingAsync binding
14.Null property bindingNull property binding
15.Binding Property with ExceptionBinding Property with Exception
16.Hierarchical Binding for three level nested objectsHierarchical Binding for three level nested objects
17.BindingOperations.GetBindingExpressionBindingOperations.GetBindingExpression
18.Bind to enum typesBind to enum types
19.Bind to a MethodBind to a Method
20.Manual Update TargetManual Update Target
21.Bind to the Values of an EnumerationBind to the Values of an Enumeration
22.Master Detail BindingMaster Detail Binding
23.Data binding using collections composed of mixed types of data.Data binding using collections composed of mixed types of data.
24.Binding Environment InfoBinding Environment Info
25.Bind to an ADO.NETDataSetBind to an ADO.NETDataSet
26.Text Data BindingText Data Binding
27.Bind to an Existing Object InstanceBind to an Existing Object Instance
28.Digital ClockDigital Clock
29.Use Data Triggers to Change the Appearance of Bound DataUse Data Triggers to Change the Appearance of Bound Data
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.