Silverlight 3 RTW Released!!! 11 Storyboard Animation Easing Demonstration
Jul 17

Originally, I just want to make a simple application to test over the out of browser feature. However, I came up something more interesting and useful.

It’s very funny that I always need to create Dependency Property and Storyboard, but I can seldom remember the exact coding. That’s mainly because the code syntax is a bit lengthy and not so intuitive. Therefore, I always have to open some old samples and do some kind of copy and paste.

I believe implementation can become a lot more easier if I can organize those commonly used coding into a single application. This is the reason why this Silverlight Helper exists! So far, it includes the following functionality:

  1. Generating Dependency Property
  2. Generating Attached Property
  3. Create Storyboard using C#
  4. ASCII Table

I will continue to add more useful stuff into this helper in the coming days.

Silverlight Helper Demo

You may also save this helper to your desktop!

Source Code:

 

Silverlight

 

Out of browser setting

Please note that you no longer have to edit AppManifest.xml for Out of Browser Setting in Silverlight 3. All you have to do is edit the Project Property and update the Out-of-Browser Settings.
 
Besides, you may prompt user to install the application by invoking the method Application.Current.Install();. Please note that the function can be called only after certain user interaction such as Button Click event.

Shares and Enjoy~

Did you like this post?

Subscribe here:  

6 Responses to “Silverlight Helper (With out of browser capability)”

  1. samcov Says:

    This is really useful.

    BTW, you die a horrible death when you click on the ASCII item.

  2. Pete Says:

    Cool.

    On the DP side, I usually use the WPF DP snippit inside visual studio (right-click, snippets) it needs a change for the callback, but otherwise works well.

  3. Nasir Aziz Says:

    I use VS Code Snippets to that. Always handy ;)

  4. Jeff Says:

    Great tool and concept.
    p.s. you spelled “experience” incorrectly in the app!

  5. Colin E. Says:

    Yes, DP code is yuck and cut-n-paste abounds. Code-snippets are good when you first create a DP, but no use for changing name / type etc …

    That is why I created some T4 code generation templates that create DPs based on an XML specification:

    http://www.codeproject.com/KB/WPF/DependencyPropertyCodeGen.aspx

    I find it really helps streamline my SL / WPF development.

    Regards, Colin E.

  6. ghost Says:

    Out-of-Browser Settings.

    ^ REALLY USEFUL!

Leave a Reply