Comment on WinFS and XAML that combine animation with video.

One of my presentation feedbacks was to combine video with the animation XAML that I post. So here it is (it much more vivid when everything is moving)…

 

By the way Longhorn shutdown if you close the window while the video is running J

 

<Canvas ID="root"

  xmlns="http://schemas.microsoft.com/2003/xaml"

  Background="White">

           

  <Video  ID="Video" Height="400" Width="400" Source="q.wmv" RepeatDuration="9999" />

 

  <TransformDecorator Canvas.Top = "320" Canvas.Left = "500">

    <TransformDecorator.Transform>

      <RotateTransform Center="0,0">

        <RotateTransform.AngleAnimations>

          <DoubleAnimation From="0" To="360" RepeatDuration="Indefinite" Begin="1"

            Duration="20" />

        </RotateTransform.AngleAnimations>

      </RotateTransform>

    </TransformDecorator.Transform>

 

    <FlowPanel>

 

            <FlowPanel.Background>

      <SolidColorBrush Color="Blue">

        <SolidColorBrush.ColorAnimations>

          <ColorAnimation From="Red" To="Blue" Duration="7"

            RepeatCount="500" AutoReverse="True"/>

        </SolidColorBrush.ColorAnimations>

      </SolidColorBrush>

    </FlowPanel.Background>

 

        <SimpleText> Hello World</SimpleText>

      

        <TextBox   Width ="130" Height ="40"> </TextBox>

            <TextBox  Width ="130" Height ="40"> </TextBox>

            <Button   Width ="30" Height ="40"> </Button>

     </FlowPanel>

  </TransformDecorator> 

           

</Canvas>

 

In the middle of my work on the presentation Longhorn decide to end his relationship with me and refuse to start. So I need to reinstall a new wife and to give up all the data (Files and demos that I made).  I was surprised when I saw that all the files that I put inside global storage (WinFS) wait there for me after windows reinstallation. Probably the installation process didn’t change WinFS *.ldf ,*.mdf data files and the streams.

No Comments