MVVM
There are 6 entries for the tag
MVVM
At today's Virtual Brown Bag meeting: Claudio introduced us to goal-tracking site 42goals.com …and shared tips for getting started with Evernote We talked about MVVM 101 JB continued his discussion of Cucumber For detailed notes, links, and the video recording, go to the VBB wiki page: https://sites.google.com/si... Happy Veteran's Day...
Posted On Thursday, November 11, 2010 1:23 PM | Feedback (0)
This week's Virtual Brown Bag topics: Houston TechFest Recap - You can download slides from Claudio, JB & George's presentations MV Envy: What are these MVx patterns all about? What are the differences between MVC, MVP and MVVM? The latest episode in JB's continuing saga of building the new Virtual Brown Bag site (http://www.virtualbrownbag... using Ruby on Rails. This week he talked about adding a registration/login feature, and using Sass (Syntactically Awesome Stylesheets) and Exceptional...
Posted On Saturday, October 16, 2010 10:54 AM | Feedback (0)
Technorati Tags: .NET,INotifyPropertyChanged... Parts 1 & 2 of this unintended trilogy: INotifyPropertyChanged with less typing using a Code Snippet INotifyPropertyChanged with less code using generics & reflection My previous post elicited a couple of good comments. Matt noted that my use of reflection to get the property name could be a problem in due to inlining in Release mode: http://stackoverflow.com/qu... http://www.hanselman.com/bl...
Posted On Monday, August 02, 2010 8:17 PM | Feedback (0)
Technorati Tags: .NET,INotifyPropertyChanged... In my last post, I talked about using a Visual Studio code snippet for properties in classes implementing INotifyPropertyChanged: The code snippet lets me create the properties faster, but it's still a lot of repetitive "setter" code for each. What if I moved the "has the value changed?" and backing field update logic out of the property setters and replace my NotifyPropertyChanged method with this CheckForPropertyChange method?: protected bool CheckForPropertyChange<T...
Posted On Tuesday, July 27, 2010 8:44 AM | Feedback (4)
Technorati Tags: .NET,INotifyPropertyChanged... Kevin Grossnicklaus gave a nice presentation on M-V-VM User Interface Patterns in Silverlight and WPF at last night's St. Louis .NET User Group meeting. A key part of MVVM is implementation of the INotifyPropertyChanged interface to let views know that bound properties have changed. Here's a simplified version of a model class from the MSDN INotifyPropertyChanged documentation: public class DemoCustomer : INotifyPropertyChanged { private Guid _id...
Posted On Tuesday, July 27, 2010 7:48 AM | Feedback (3)
My XAML learning project is inspired by Leon Bambrick’s “World’s Simplest Code Generator” (http://secretgeek.net/wscg... It’s a 3-pane window where you type or paste data into the top pane, enter a formatting pattern in the middle pane, and it displays the formatted results in the bottom pane: (Yes, I know about auto-implemented properties, Visual Studio snippets, and T4. The property-generating scenario above is just for example purposes.) The TextBox controls are bound to properties of my ViewModel,...
Posted On Saturday, December 12, 2009 8:15 AM | Feedback (0)