http://thelifepattern.blogspot.com/
Name: http://thelifepattern.blogspot.com/
Score: 33.09
Last Seen: 247 days, 22 hours, 6 minutes ago
Member Since: 2 July, 2009
DotNetShoutout
atom rss
9
shouts

Silverlight Drag and Drop - Jeff Blankenburg

published 246 days, 6 hours, 53 minutes ago posted by AlexAlex 248 days, 4 hours, 38 minutes ago
Thursday, July 09, 2009 12:05:29 PM GMT Tuesday, July 07, 2009 2:19:42 PM GMT
This is the fifth day of 31 Days of Silverlight. Today's post is on enabling Drag & Drop in a Silverlight application. Why Drag & Drop? Drag & Drop is an important feature to think about, because it's one of those gestures that we use all the time on our computers, and never even think about it. Moving files to the Trash, moving text from one area in a document to another, there's plenty of applications for it. It's not generally a gesture we associate with the web, which is yet another rea... (more)
category: Silverlight | clicked: 53 | comment | | source: jeffblankenburg.com
tags: Silverlight, SL
12
shouts

Using WCF Web Services With Silverlight (and LINQ) - Jeff Blankenburg

published 247 days, 5 hours, 50 minutes ago posted by AlexAlex 248 days, 4 hours, 35 minutes ago
Wednesday, July 08, 2009 1:07:47 PM GMT Tuesday, July 07, 2009 2:23:05 PM GMT
This is the 7th post in a series of "31 Days of Silverlight." Today I'm going to show how to create a simple WCF service, and consume it from a Silverlight application. Talking to data services is something you're going to need to do quite often, which is why I've spent two consecutive posts talking about it. Create your Silverlight application I'm going to start from the beginning. First, we need to create a new Silverlight project. I'm naming mine JBWCFService... (more)
category: Silverlight | clicked: 83 | comment | | source: jeffblankenburg.com
tags: Linq, Silverlight, SL, WCF, Web Service
11
shouts

Silverlight and the Twitter "Hello, World" - Jeff Blankenburg

published 247 days, 5 hours, 50 minutes ago posted by AlexAlex 248 days, 4 hours, 37 minutes ago
Wednesday, July 08, 2009 1:07:47 PM GMT Tuesday, July 07, 2009 2:21:38 PM GMT
Day #6: Silverlight and the Twitter "Hello, World"Monday, July 06, 2009This is the sixth post in my series of thirty-one, titled "31 Days of Silverlight". You can find the master list here. Today, we are talking about how to talk to the Twitter API from a Silverlight application. Why Twitter?Aside from the infinite value that Twitter offers to software developers, there's another reason we're doing this. Twitter apps are the new "Hello, World!" apps. No more is it enough to be able to write text to th... (more)
category: Silverlight | clicked: 55 | comment | | source: jeffblankenburg.com
tags: Silverlight, SL, Twitter
9
shouts

Custom Silverlight Loading Screen - Jeff Blankenburg

posted by AlexAlex 248 days, 4 hours, 45 minutes ago
Tuesday, July 07, 2009 2:12:53 PM GMT
This is the third post in my series of thirty-one, called, not surprisingly, "31 Days of Silverlight". You can find the master list here. Also, before we get started here, don't forget that today is Contribupendence Day. Take a moment to read this post about what Contribupedence Day is, and how you can participate. If you've ever seen a Silverlight application before, you've likely seen the default loading screen. Here's a example of what I'm talking about.. (more)
category: Silverlight | clicked: 46 | comment | | source: jeffblankenburg.com
tags: Silverlight, SL
9
shouts

Silverlight Screen Transitions - Jeff Blankenburg

published 246 days, 6 hours, 53 minutes ago posted by AlexAlex 248 days, 4 hours, 47 minutes ago
Thursday, July 09, 2009 12:05:29 PM GMT Tuesday, July 07, 2009 2:11:17 PM GMT
This is second of thirty-one posts on Silverlight I will be doing in July. The first post was on the mouse events available to you in Silverlight. Today's post is on Screen Transitions, or more specifically, moving from one XAML file to another. Moving From One XAML File To Another... (more)
category: Silverlight | clicked: 59 | comment | | source: jeffblankenburg.com
tags: Silverlight, SL
8
shouts

Mouse Events in Silverlight - Jeff Blankenburg

posted by AlexAlex 248 days, 4 hours, 49 minutes ago
Tuesday, July 07, 2009 2:08:53 PM GMT
In my inaugural post of the "31 Days of Silverlight," we're going to focus on Mouse Event handlers. With an interactive application, you're often going to want to know when your users are clicking on stuff. So, this is a tutorial on the different mouse events, and how to use them. So, let's start with the beginning, and go forward from there. You can download ALL of the sample code from this post here... (more)
category: Silverlight | clicked: 5 | comment | | source: jeffblankenburg.com
tags: Silverlight, SL
3
shouts

codeblog++: Threaded ForEach extension for IEnumerable

posted by http://thelifepattern.blogspot.com/http://thelifepattern.blogspot.com/ 253 days, 1 hour, 1 minute ago
Thursday, July 02, 2009 5:57:12 PM GMT
I had an idea that would allow me to perform an operation on an item in an IEnumerable list on a different thread. This is good if you need to perform an extensive operation on an item in your list. It was also a nice exercise to get away from every day life. First thing I did was create a static class to hold my extension and the extension method itself. This method will take two parameters, an action to perform per item and a callback after each operation per item has been completed. public sta... (more)
category: Architecture | clicked: 5 | comment | | source: thelifepattern.blogspot.com
tags: .NET, .NET 3.5, C#, C# .NET, C# 3.5