Silverlight Egg Timer
NOTE: The link is now updated from a WPF/E example to a 1.0 Silverlight example - Simon.
Well, after a while you get sick of "Hello World" for your first applications.
I thought I'd make my Silverlight learning experience public, so if you have Silverlight installed, take a look. I wanted a two-minute timer for all my GTD "less than two minute" tasks, so I wrote one.
More examples coming soon.
References (2)
References allow you to track sources for this article, as well as articles that were written in response to this article.
-
Response: WPF/E Egg TimerSimon Allerdice has written a WPF/E egg timer app as a first sample. Check it out . -
Response: Getting Started with SilverlightShawn Wildermuth, who wrote the excellent book Pragmatic ADO.NET (Addison-Wesley, 2003, 357 pp, $44.99, ISBN 0-201-74568-2), has been working closely with the Silverlight team at Microsoft. Just in time for the release of Silverlight at MIX07, O'Reilly has released Shawn's...

Reader Comments (7)
I guess that'll have to wait for version 2!! ;)
I noticed that you have a script error, which is handled in IE (7) but thrown in FF (1.5.0.8):
Error: Error calling method on NPObject!
Source File: http://www.interfacett.com/wpfe/eggtimer/js/eventhandlers.js
Line: 30 (and 180)
The syntax of the call should be
[TextBlock].setvalue("text", "asdf");
rather than
[TextBlock].setvalue("text") = "asdf";
Alternatively, you can access the property "directly" by using:
[TextBlock].text = "asdf";
using Expression Blend or by code?
i need to know if its possible to do wpf/e using Blend ...
thnx ..
Now, I'm really looking forward to having a nice designer to work with, but I must admit I really did learn a lot by working with the raw XAML.