(X) Hide this SilverlightShow next training events: Getting started with the Silverlight 5 Beta - a free 1 hour webinar on May 11th, by Michael Crump. Join at 10 am PST.
XNA for Windows Phone 7 - a 3 day training by MCC Peter Kuhn. June 1-3, 9 am - 1.30 pm PST. Sign up early-bird for $199.
Skip Navigation LinksHome / Search

Search

 
Results Per Page

Found 5 results for VSM.
Date between: <not defined> and <not defined>
Search in: News , Articles , Tips , Shows , Showcase , Books

Order by Publish Date   Ascending Title   Rating  

  • The Visual State Manager Explained

    0 comments  /  posted by  Silverlight Show  on  Feb 01, 2011 (3 months ago)

    SilverlightShow Page for all Silverlight and Windows Phone 7 (WP7) things on TwitterJeremy Likness has published the resources from his Silverlight's Visual State Manager talk.

    Source: C#er : IMage

    I enjoyed the talk and had a terrific crowd with some very good questions. The deck explains much of what I went into with the talk, including exactly how the VSM works from when and how it starts and stops storyboards to the timing and flow of a state change event (including a flow chart that maps out the exact steps).


  • 0 comments  /  posted by  Silverlight Show  on  Jan 20, 2011 (3 months ago)

    SilverlightShow Page for all Silverlight and Windows Phone 7 (WP7) things on TwitterIn the next part of his Jounce series, Jeremy Likness diggs into Visual State Manager and transitions.

    Source: C#er : IMage

    One of the most common questions I get about Jounce is how to handle transitions, since the ContentControl immediately swaps out content. There are some third-party solutions, such as the TransitioningContentControl from the Silverlight toolkit, but Jounce can also handle this right out of the box.
  • 0 comments  /  posted by  Silverlight Show  on  Nov 26, 2010 (5 months ago)

    SilverlightShow Page for all Silverlight and Windows Phone 7 (WP7) things on TwitterIn order to demonstrate how Visual States can be used to change the look of your controls, Timmy Kokke has created a cool traffic light control.

    Source: Timmy Kokke's Blog

    Visual States are an easy way to change the looks of your controls based on certain states. This state can be something like a mouse hover, some invalid state or any state you need in a control.

    For this tutorial I chose a traffic light control that can be one of four states. Green, Orange, Red and Inconclusive (blinking orange). In the end I show you how to use behaviors on buttons to set the state of the traffic light. This makes the use of visual states perfectly suitable for use in MVVM projects. 

                                                

  • 0 comments  /  posted by  Silverlight Show  on  Nov 23, 2010 (5 months ago)

    SilverlightShow Page for all Silverlight and Windows Phone 7 (WP7) things on TwitterThis article on how to use Visual State Manager is an edited version of a a section of a chapter David Kelley wrote for the book 'Professional Silverlight 4'.

    Source: Hacking Silverlight

    Part of the job of the designer or creative that you typically see being done in Expression Blend is skinning and templating controls, views, and other objects. For the most part, all controls have built-in templates, and in Visual Studio it is very difficult to get at these as they are part of the framework and not exposed. Expression Blend has a great tool to help you get at the templates by creating copies of templates for any control, putting them into your code and allowing you to edit them in the Designer using the Visual State Manager area labeled States that was mentioned earlier.
  • Defining Custom VSM states for Custom Controls in Silverlight 3 / Blend 3

    0 comments  /  posted by  Silverlight Show  on  Aug 04, 2009 (more than a year ago)

    Imran Shaik demonstrates how to use TemplateVisualState attributes to allow manipulation of visual states in your controls.

    In Silverlight 2.0/Expression Blend 2 SP1 creating a new VSM state was pretty straight forward, either for a UserControl or Custom Control a new Visual State could have been created by just clicking on create a new Visual state group, similarly XAML could have been manually editing the XAML.

    In Blend 3.0/Silverlight 3.0 you can still create visual states the old way for UserControls but for custom controls this option becomes disabled/unavailable.