Create DoubleAnimation and Animate a Button with Button.BeginAnimation and Button.WidthProperty : DoubleAnimation « Windows Presentation Foundation « VB.Net Tutorial






<Window x:Class="Window1" Title="Animation" Width="300" Height="300"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  <Canvas>
    <Button x:Name="b">OK</Button>
  </Canvas>
</Window>

//File:Window.xaml.vb
Imports System.Windows
Imports System.Windows.Controls
Imports System.Windows.Media.Animation

Public Partial Class Window1
  Inherits Window
  Public Sub New()
    InitializeComponent()
    Dim a As New DoubleAnimation()
    a.From = 50
    a.[To] = 100

    b.BeginAnimation(Button.WidthProperty, a)
  End Sub
End Class
WPF Create Double Animation And Animate A Button With Button Begin Animation And Button Width Property








16.109.DoubleAnimation
16.109.1.DoubleAnimation Loop foreverDoubleAnimation Loop forever
16.109.2.DoubleAnimation Loop three timesDoubleAnimation Loop three times
16.109.3.DoubleAnimation Loop for 30 secondsDoubleAnimation Loop for 30 seconds
16.109.4.Use DoubleAnimation to animate Gradient OffsetUse DoubleAnimation to animate Gradient Offset
16.109.5.Path Animation with DoubleAnimation Using Path, AutoReversePath Animation with DoubleAnimation Using Path, AutoReverse
16.109.6.Create DoubleAnimation and Animate a Button with Button.BeginAnimation and Button.WidthPropertyCreate DoubleAnimation and Animate a Button with Button.BeginAnimation and Button.WidthProperty
16.109.7.TranslateTransform and DoubleAnimationTranslateTransform and DoubleAnimation