http://amazedsaint.blogspot.com/
Name: http://amazedsaint.blogspot.com/
Score: 293.11
Last Seen: 1 day, 4 hours, 57 minutes ago
Member Since: 5 November, 2009
DotNetShoutout
atom rss
6
shouts

Key Take Aways and Links from #Mix10 Keynote - Silverlight Windows Phone 7 XNA

published 10 hours, 8 minutes ago posted by http://amazedsaint-projects.blogspot.com/http://amazedsaint-projects.blogspot.com/ 1 day, 5 hours, 10 minutes ago
Tuesday, March 16, 2010 1:20:20 PM GMT Monday, March 15, 2010 6:18:21 PM GMT
Watching online the Mix 10 Keynote from Scott Guthrie. Here we go, the key take aways listed below. FeaturesWindows Phone 7 can hosts the same Silverlight runtime as the web platform. Supports media experiences Supports deep zoom WP7 initially will run a superset of Silverlight 3 with phone-specific extensions like accelerometer. Silverlight penetration now at 60% (was 45% during PDC, this is news for me) Windows Phone 7 supports 'traditional' development platforms - Visual Studio 2010, Blend. Windows Ph... (more)
category: Silverlight | clicked: 22 | comment | | source: amazedsaint.blogspot.com
tags: C#, Mix10K, Silverlight, Windows Phone 7
9
shouts

C# 4.0 dynamic keyword for Dummies – Under the hood

published 11 days, 8 hours, 54 minutes ago posted by http://amazedsaint.blogspot.com/http://amazedsaint.blogspot.com/ 12 days, 14 hours, 18 minutes ago
Friday, March 05, 2010 2:33:53 PM GMT Thursday, March 04, 2010 9:09:33 AM GMT
In this post, we’ll go back to the basics to uncover few interesting aspects of C# 4.0 dynamic features. Let us start with a simple experiment. Static Typing or Early Binding Let us start with a bare minimum program. Fire up VS2010 and try the following code. It is obvious that this won’t compile. Simply because, the compile/design time checking ensures type safety - and as we don’t have a method named SomeStupidCall in our Human class, we can’t compile the same. So, that is what you get. Du... (more)
category: Foundation | clicked: 67 | comment | | source: amazedsaint.blogspot.com
tags: C#, C# 4.0, dynamic, VS2010
7
shouts

A 10 minute ASP.NET MVC Twitter Search App – Using a Duck Typed (dynamic) View Model using ElasticObject

published 21 days, 17 hours, 28 minutes ago posted by http://amazedsaint.blogspot.com/http://amazedsaint.blogspot.com/ 22 days, 13 hours, 3 minutes ago
Tuesday, February 23, 2010 6:00:03 AM GMT Monday, February 22, 2010 10:25:05 AM GMT
The objective of this article is to demonstrate how to use duck typed (dynamic) view models with ASP.NET MVC, especially when you work with fluid data stores like XML. As we are using .NET dynamic features, you’ll need VS2010 beta or RC to work with the samples. Full source code is available, but I’ll recommend you to go through the article before you download. [v] Download Twitter Search AspNetMvcDemoApp The Application Alright, to start with, have a look at the application screen shot below. It is a... (more)
category: ASP.NET | clicked: 28 | comment | | source: amazedsaint.blogspot.com
tags: .NET, .Net 4.0, ASP.NET, MVC
12
shouts

Introducing ElasticObject for .NET 4.0 - An easier way to work with XML in CSharp, A Smarter Cousin of ExpandoObject.

published 23 days, 4 hours, 52 minutes ago posted by http://amazedsaint.blogspot.com/http://amazedsaint.blogspot.com/ 25 days, 5 hours, 51 minutes ago
Sunday, February 21, 2010 6:36:05 PM GMT Friday, February 19, 2010 5:36:55 PM GMT
This is an intro post on the ‘ElasticObject’ concept I’ve implemented some time back – First of all, let us see what exactly the ElasticObject implementation is capable off. After that we might touch the implementation details. To start with, here are few scenarios you can use ElasticObjectAn easier, fluid way to work with data formats – like XML and JSON. Presently, we’ve some support for XML. Cleaner code though it is duck typed A ... (more)
category: Foundation | clicked: 91 | comment | | source: amazedsaint.blogspot.com
tags: .NET, C#, dynamic, DynamicObject, XML
10
shouts

Silverlight in Windows Phone 7 and beyond. Why Silverlight is going to be ‘The’ development platform

published 26 days, 9 hours, 22 minutes ago posted by http://amazedsaint.blogspot.com/http://amazedsaint.blogspot.com/ 27 days, 16 hours, 54 minutes ago
Thursday, February 18, 2010 2:05:33 PM GMT Wednesday, February 17, 2010 6:34:19 AM GMT
Remember the “Three Screens and a Cloud” phrase coined by Ray Ozzie? To understand why it is such a brilliant vision, just take a step back and see what percentage of your time you end up spending with these three screens – your PC, your phone and the Television hanging in front of you. And suddenly, you’ll realize that all recent announcements from Microsoft – be it Azure, Live Services, Bing, Silverlight, Windows 7 or the brand new Windows Phone 7 Series - is just individual pieces of a larger puzzle, ... (more)
category: Silverlight | clicked: 67 | comment | | source: amazedsaint.blogspot.com
tags: Architecture, Silverlight, Software Design, Windows Phone 7
9
shouts

Top 5 Common programming mistakes .NET developers must avoid !!

published 36 days, 9 hours, 48 minutes ago posted by http://amazedsaint.blogspot.com/http://amazedsaint.blogspot.com/ 36 days, 14 hours, 30 minutes ago
Monday, February 08, 2010 1:40:11 PM GMT Monday, February 08, 2010 8:57:43 AM GMT
Some time back, I asked a question in Stackoverflow.com, about common programming mistakes .NET developers must avoid. The response was awesome, to say the least. I’m just listing down the top 5 developer crimes I picked, from the answers I received (regardless the votes). (more)
category: Foundation | clicked: 79 | comment | | source: amazedsaint.blogspot.com
tags: .NET, C#, programmers, Software Develeopment
10
shouts

Behaviors, Triggers and Actions in Silverlight And WPF Made Simple – Part 2 – Triggers

published 49 days, 9 hours, 54 minutes ago posted by http://amazedsaint.blogspot.com/http://amazedsaint.blogspot.com/ 49 days, 18 hours, 20 minutes ago
Tuesday, January 26, 2010 1:33:47 PM GMT Tuesday, January 26, 2010 5:07:55 AM GMT
Triggers and Actions – Scratching the Surface A Trigger can invoke a set of Actions, when it is fired. For example, you can nest few actions (like PropertyChangeAction to change a property of an element) in an EventTrigger, so that those actions will get executed when a specific Event occurs. You can attach more than one trigger to an element. If you have some WPF background, you may quickly remember the DataTriggers, MultiDataTriggers etc. There are various Triggers and Actions that comes ‘out of the b... (more)
category: Silverlight | clicked: 32 | comment | | source: amazedsaint.blogspot.com
tags: Silverlight Expression Blend
6
shouts

Silverlight Powered Wearable Locket

published 55 days, 13 hours, 46 minutes ago posted by http://amazedsaint.blogspot.com/http://amazedsaint.blogspot.com/ 56 days, 6 hours, 52 minutes ago
Wednesday, January 20, 2010 9:41:33 AM GMT Tuesday, January 19, 2010 4:36:30 PM GMT
Can I have quick meeting with all the Project Natal, Win Mob and Silverlight guys to tell them, “Guys, let us get this thing out by next month” :) (more)
category: Silverlight | clicked: 31 | comment | | source: amazedsaint.blogspot.com
tags: fun, natal, Silverlight, win mobile, Winmin
12
shouts

Behaviors, Triggers and Actions in Silverlight And WPF Made Simple – Part I - Behaviors

published 53 days, 14 hours, 25 minutes ago posted by http://web2trends.blogspot.com/http://web2trends.blogspot.com/ 56 days, 11 hours, 33 minutes ago
Friday, January 22, 2010 9:02:39 AM GMT Tuesday, January 19, 2010 11:55:29 AM GMT
The objective of this article series is to give a quick overview of Behaviors, Triggers and Actions in Silverlight and WPF. Together, they enable a great deal of design time interactivity for your UI. They also make possible re-use and re-distribution of interaction logic. This is the first article in the series, and I’ll explain about Behaviors, and also we’ll create a custom behavior. In this post, we’ll play around with Microsoft Expression Blend 4.0 beta a bit, to help us understand the concept furt... (more)
category: Silverlight | clicked: 46 | comment | | source: amazedsaint.blogspot.com
tags: Behaviors, Blend, Silverlight, WPF
8
shouts

WPF Extensibility Hacks – Preview 1 – Few interesting Triggers and Actions for WPF, Invoking Triggers based on Conditions etc

published 57 days, 12 hours, 46 minutes ago posted by http://amazedsaint.blogspot.com/http://amazedsaint.blogspot.com/ 60 days, 18 hours, 24 minutes ago
Monday, January 18, 2010 10:41:45 AM GMT Friday, January 15, 2010 5:04:05 AM GMT
A set of extensibility hacks for WPF. A few interesting triggers and actions, including EventTrigger, ReactiveTrigger, InvokeMethodAction, and InvokeCommandAction. Also allows invoking Triggers and Actions based on Conditions. Just want to have a quick word on what is available. Here are a couple of points about Wex. Wex is built on top of the System.Windows.Interactivity infrastructure. Wex allows you to define multiple conditions for invoking triggers (like you can specify a KeyDown event trigger sh... (more)
category: UX | clicked: 32 | comment | | source: amazedsaint.blogspot.com
tags: C#, Visual Studio, WPF
6
shouts

A Silverlight helper class to get/set Dependency property values of other objects

published 70 days, 9 hours, 56 minutes ago posted by http://amazedsaint.blogspot.com/http://amazedsaint.blogspot.com/ 71 days, 10 hours, 9 minutes ago
Tuesday, January 05, 2010 1:32:31 PM GMT Monday, January 04, 2010 1:19:09 PM GMT
In my last post on Dependency Properties (Read here), I explained how to  listen for dependency property change notification of a UI Element. Here is a more ‘refined’ extension method - so that you can listen to Property change notifications of a source - by creating and registering a ‘listener’ dependency property in your class ('owner') and setting up a binding with the ‘source’ object. Remember that starting from Silverlight 4.0, you can even have dependency objects as the source. This is useful wh... (more)
category: Silverlight | clicked: 34 | comment | | source: amazedsaint.blogspot.com
tags: .NET, C#, Silverlight, VisualStudio
8
shouts

Slex For Silverlight Preview 2 – Conditionally invoking Triggers

published 77 days, 9 hours, 59 minutes ago posted by http://amazedsaint.blogspot.com/http://amazedsaint.blogspot.com/ 77 days, 17 hours, 18 minutes ago
Tuesday, December 29, 2009 1:29:13 PM GMT Tuesday, December 29, 2009 6:10:28 AM GMT
As of now, Slex Preview 2 Provides the following Triggers EventTrigger – Will be fired when an event is raised. Can listen to events of Elements, or events from your view model PropertyTrigger – Will be fired when the specified property changes. Can listen to properties of Elements, or property in your view model ReactiveTrigger – Can ‘import’ an Observable that you may ‘export’ using MEF. Useful to define and use custom events using System.Reactive. And the following actions Invok... (more)
category: Silverlight | clicked: 43 | comment | | source: amazedsaint.blogspot.com
tags: .NET, Blend, C#, Expression, MEF, Silverlight
7
shouts

Introducing Slex - Silverlight Experimental Hacks – Now you’ve a PropertyTrigger, EventTrigger, InvokeCommandAction etc.

published 91 days, 11 hours, 46 minutes ago posted by http://amazedsaint.blogspot.com/http://amazedsaint.blogspot.com/ 92 days, 4 hours, 25 minutes ago
Tuesday, December 15, 2009 11:41:59 AM GMT Monday, December 14, 2009 7:03:25 PM GMT
Slex is built on top of System.Windows.Interactivity framework, and supports a couple of interesting Triggers and Actions. This includes EventTrigger, PropertyTrigger, InvokeCommandAction, InvokeMethodAction etc. This is the intro screen of the related demo, and I’ll explain a bit on each item. The download link ... (more)
category: Silverlight | clicked: 49 | comment | | source: amazedsaint.blogspot.com
tags: .NET, Blend, Silverlight, Visual Studio
9
shouts

Silverlight : Listening to Dependency Property Change notification of a given Element

published 103 days, 14 hours, 21 minutes ago posted by http://amazedsaint.blogspot.com/http://amazedsaint.blogspot.com/ 104 days, 2 hours, 40 minutes ago
Thursday, December 03, 2009 9:06:40 AM GMT Wednesday, December 02, 2009 8:48:25 PM GMT
I was digging a bit around Silverlight Dependency properties, mainly to see how to receive change notification when ever a dependency property is changed. In WPF, this is straight forward, you may use the DependencyPropertyDescriptor, and call AddValueChanged. Like this. DependencyPropertyDescriptor desc = DependencyPropertyDescriptor.FromProperty (UIElement.VisibilityProperty, typeof(UIElement)); desc.AddValueChanged (this.myLabel, new EventHandler(VisibilityChanged));   Now, how to do this ... (more)
category: Silverlight | clicked: 49 | comment | | source: amazedsaint.blogspot.com
tags: .NET 3.5 SP1, C#, Silverlight
9
shouts

Microsoft, isn't it a good idea to have a Silverlight OS against Google Chrome OS?

published 110 days, 2 hours, 58 minutes ago posted by http://amazedsaint.blogspot.com/http://amazedsaint.blogspot.com/ 112 days, 16 hours, 57 minutes ago
Thursday, November 26, 2009 8:30:17 PM GMT Tuesday, November 24, 2009 6:30:50 AM GMT
Before we begin - these are few random thoughts and speculations on the possibilities of having a Silverlight Operating System. If Google can think about an Operating System on top of Linux + Chrome, why Microsoft can’t think about a Silverlight OS, probably on top of MinWin? Especially for Atom PCs, Handheld devices, IP TVs etc. This might be already there in the cards – I don’t know. Just want to take a step back and see what all revelations are happening around the Silverlight + Cloud technology stac... (more)
category: Silverlight | clicked: 78 | comment | | source: amazedsaint.blogspot.com
tags: Azure, Microsoft, Silverlight, win mobile
12
shouts

Silverdraw: A collaboration board using SIlverlight + WCF - Source Code & Intro Article

published 125 days, 6 hours, 32 minutes ago posted by http://geeksbydefault.blogspot.com/http://geeksbydefault.blogspot.com/ 126 days, 10 hours, 21 minutes ago
Wednesday, November 11, 2009 4:56:09 PM GMT Tuesday, November 10, 2009 1:06:56 PM GMT
Silverdraw is realtime white board that can sync information between various participants, using Silverlight + WCF Polling Duplex. Presently this is a just a POC implementation. Users can draw together in the white board, and may chat each other. Here is a quick screen shot of ... (more)
category: Silverlight | clicked: 75 | comment | | source: amazedsaint.blogspot.com
tags: .NET, C#, Silverlight, WCF
11
shouts

JSON Serialization and De-serialization In Silverlight - Few Handy Extension Methods

published 119 days, 12 hours, 39 minutes ago posted by http://amazedsaint.blogspot.com/http://amazedsaint.blogspot.com/ 120 days, 20 hours, 5 minutes ago
Tuesday, November 17, 2009 10:49:02 AM GMT Monday, November 16, 2009 3:22:34 AM GMT
This post will give an introduction to JSON, and also I'll share a couple of handy C# extension methods to handle serialization and de-serialization of JSON (Java Script Object Notation) Data. from your Silverlight apps To know more about JSON format, check out the http://www.json.org - To quote, JSON (J avaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate. These properties make JSON an ideal ... (more)
category: Silverlight | clicked: 60 | comment | | source: amazedsaint.blogspot.com
tags: JSON, Serialization, Silverlight
14
shouts

LINQ to Events – More on .NET Reactive Extensions (Rx)

published 120 days, 13 hours, 39 minutes ago posted by http://amazedsaint.blogspot.com/http://amazedsaint.blogspot.com/ 121 days, 13 hours, 9 minutes ago
Monday, November 16, 2009 9:48:51 AM GMT Sunday, November 15, 2009 10:19:24 AM GMT
In my last post, I gave a high level overview about .NET Reactive Extensions (Rx), Push and Pull data sequences, and creating Observables from .NET events. In this post, we’ll explore more about the ‘LINQ to Event’ aspect. You may want to download the related source code to play withDownload related source to play withEvent To Observables To recap, as described in my last post, you may use the Observable.FromEvent method to create Observables from events and subscribe to them, like,var allKeyDowns = Obs... (more)
category: Foundation | clicked: 70 | comment | | source: amazedsaint.blogspot.com
tags: .Net 4.0, .NET Rx, Reactive Programming, System.Reactive
9
shouts

System.Reactive or the .NET Reactive Extensions (Rx) – Concepts and First Look

posted by http://amazedsaint.blogspot.com/http://amazedsaint.blogspot.com/ 121 days, 13 hours, 12 minutes ago
Sunday, November 15, 2009 10:15:57 AM GMT
Recently, a lot of interest is bubbling up in the .NET community about reactive programming. The .NET Rx or .NET Reactive extensions (System.Reactive.dll) recently appeared in the latest Silverlight tool kit drop, where it was mainly used for writing unit tests.  By the way, what is Reactive Programming? Let us keep it simple. To understand the real spirit of reactive programming, let us consider a small example, result = var1 + var2. In a normal scenario, we expect the value of result to be independe... (more)
category: Foundation | clicked: 42 | comment | | source: amazedsaint.blogspot.com
tags: .Net 4.0, .NET Rx, Reactive Programming, System.Reactive
12
shouts

LINQ To Events - Generating GetEventName() Wrapper Methods using T4 Text Templates

published 118 days, 11 hours, 54 minutes ago posted by http://amazedsaint.blogspot.com/http://amazedsaint.blogspot.com/ 121 days, 13 hours, 13 minutes ago
Wednesday, November 18, 2009 11:34:28 AM GMT Sunday, November 15, 2009 10:15:08 AM GMT
Soon after I wrote my last post on LINQ to Events, I thought about creating a quick text template to automatically generate those GetEventName wrapper methods – so that we don’t end up in hand coding them again. You may use it to quickly generate extension methods to create event to observable wrappers for a specific type. Here we go. Click 'view plain' to grab the source code Add a new text file to your project, and name it EventWrapperGen.ttinclude (more)
category: Foundation | clicked: 42 | comment | | source: amazedsaint.blogspot.com
tags: .Net 4.0, .NET Rx, Reactive Programming, System.Reactive
Previous 1 2 Next