| |
browse.develop.com
Browse.develop.com is a community that was established to collect and
organize valuable web information. Our technical staff have selected and
indexed information and courses that they feel will help you stay
current on best practices across the SDLC.
|
8 Articles match "MVVM"
| Related DevelopMentor Courses | MORE | | Guerrilla.NET (US) Training MVVM : Learn advanced WPF / Silverlight design patterns and techniques including MVVM (Model-View-ViewModel). MVVM : Learn advanced WPF / Silverlight design patterns and techniques including MVVM (Model-View-ViewModel). C# : Leverage new features of C# including asynchronous methods from C# 5.0, dynamic typing from C# 4.0, and LINQ and lambda expressions from C# 3.0. WPF/SL : Develop cutting-edge UIs with Windows Presentation Foundation and Silverlight including coverage of Silverlight 5.0 assuming Silverlight 5.0 beta is available after Mix 11). and jQuery. and 5.0 DevelopMentor Courses - Tuesday, March 1, 2011 Guerrilla.NET (UK) Training Silverlight, Data and MVVM Moving data between the UI and underlying objects can be a laborious task. Leverage new features of C# 4.0, including named and optional parameters and dynamic typing. Understand the new features of the core.NET runtime services including the garbage collector. Use PFx as a unifying library for all your multithreading needs. Parallelize computationally intensive processing using multiple cores/processors. Build efficient multithreaded processing using new lightweight concurrent data structures. Create REST based services based on the WCF and ASP.NET stacks. DevelopMentor Courses - Tuesday, March 1, 2011 Essential Windows Presentation Foundation - WPF Training What is MVVM and how do I use it? Use VS.NET 2008 (or 2010) and Expression Blend together to build your user interface. Integrate your visual designers with your developers to maximize their skills. Properly design your architecture to take advantage of data binding. Use new technologies such as LINQ and XLINQ with WPF. Create professional, modern interfaces with animations, and special effects. Customize the appearance of controls with styles and themes. Utilize your existing controls, forms and resources from Windows Forms with WPF. What are the new features in WPF 3.5 SP1 and 4.0? DevelopMentor Courses - Wednesday, February 22, 2012 |
69 Articles match "MVVM"
| The Latest from DevelopMentor | MORE | | Simple MVVM Toolkit for Silverlight 5.0, Windows Phone 7.1 I’ve just upgraded my Simple MVVM Toolki t to support Silverlight 5.0 You can still use the toolkit to develop MVVM apps for Silverlight 4 if you wish, and the Visual Studio project templates include versions for both Silverlight versions – 4 and 5. And if you’re getting up to speed on MVVM with the toolkit, be sure to check out the Getting Started screencast. ve also updated the NuGet packages for Simple MVVM Toolkit. Otherwise, run the full installer from the CodePlex site and you’ll get the entire Simple MVVM Toolkit experience. and Windows Phone 7.1 ! Tony and Zuzana's World - Friday, March 2, 2012 DotNed podcast: Client web ontwikkelingen met Steve Sanderson Ze spreken ondermeer over Knockout.js, een JavaScript library die MVVM stijl databinding mogelijk maakt binnen HTML/JavaScript applicaties. In deze, tijdens de TechDays opgenomen, podcast spreekt Maurice de Beijer met Steve Sanderson over de toekomst van web development met de moderne browsers. Je kan de podcast hier beluisteren. Enjoy! TheProblemSolver DotNetEvents.NET ASP.NET jQTouch Podcast DotNed HTML5 Knockout The Problem Solver - Tuesday, February 21, 2012 DotNed podcast: Client web ontwikkelingen met Steve Sanderson Ze spreken ondermeer over Kockout.js, een JavaScript library die MVVM stijl databinding mogelijk maakt binnen HTML/JavaScript applicaties. In deze, tijdens de TechDays opgenomen, podcast spreekt Maurice de Beijer met Steve Sanderson over de toekomst van web development met de moderne browsers. Je kan de podcast hier beluisteren. Enjoy! TheProblemSolver DotNetEvents.NET ASP.NET jQTouch Podcast DotNed HTML5 Knockout The Problem Solver - Tuesday, February 21, 2012 | -
| The Best from DevelopMentor | MORE | - Simple MVVM Toolkit versus MVVM Light Toolkit
Now that I’ve released Simple MVVM Toolkit version 2 , people are starting to ask how it stacks up against some of the other MVVM Toolkits out there. MVVM, which stands for Model-View-ViewModel , is a UI design pattern that provides better maintainability, testability and designability.) At the other end there are toolkits that are very lightweight, with the basic features you need to build apps using the MVVM design pattern. Simple MVVM Toolkit would fall into the latter category. MVVM Light does not seem to offer much in the way of documentation. Tony and Zuzana's World - Saturday, April 23, 2011 - Easier Async for Silverlight Apps using MVVM
Well, it just so happens that my Simple MVVM Toolkit offers support for async execution right out of the box. Check out the sample app by downloading the Simple MVVM Toolkit and opening the SimpleMvvm-Async project. Technical MVVM SilverlightIt makes sense to execute long-running tasks on a background thread, in order to keep the UI responsive by not tying up the main thread. However, as is the case with other UI frameworks such as Windows Forms or WPF, you should not touch UI elements from worker threads. Your friend here is a synchronization device like AutoResetEvent. Tony and Zuzana's World - Saturday, January 29, 2011 - Commands versus Event Triggers in MVVM
Recently I’ve received some questions from the Simple MVVM Toolkit’s discussion forum on when to use commands versus Blend-style event triggers. Unfortunately Silverlight requires you to fire the CanExecuteChanged event manually, which is why implementations of ICommand (such as the DelegateCommand in Simple MVVM Toolkit) also expose a public RaiseCanExecute method. The generic DelegateCommand in Simple MVVM Toolkit is implemented in a way that dynamically calls a Parse method on the generic type argument. Technical MVVM SilverlightEnjoy, Tony. Tony and Zuzana's World - Friday, July 22, 2011 - MVVM: Views and ViewModels
In the previous post, I provided a link to the project template you can use to start a new MVVM project using the JulMar MVVM library. Here's the two links in case you didn't get them before: MVVM Helpers Distribution. Well, for starters, you can now generate a starter project that provides a nice template for an MVVM application. This is the binary dependencies the project requires, specifically it contains the JulMar MVVM libraries and Blend action libraries. This is one of three primary VM classes in the MVVM helper library. Project Template. Views. - MVVM Helpers v1.03
I just put the latest version of the MVVM helpers online - mvvmhelpers.zip. Tags: NET WPF MVVM There's a bunch of new stuff in it - check the release notes for the highlights. There's a set of breaking changes in it as well, specifically I've moved several of the attached behaviors into the new Blend model. Originally in my local version I did it to the JulMar.Wpf.Helpers.dll and got a dependency against System.Windows.Interactivity.dll. did update the sample to show how they get used. If you do anything interesting or fun, let me know! - MVVM: Introducing the message visualizers
In this post, I will go over the simple message visualizers available in the MVVM Helpers toolkit. To demonstrate the first three visualizer types, we’ll build a very simple MVVM application to display messages. In the next post we’ll take a look at the grand-daddy of the message visualizers in the MVVM Helper toolkit: the IUIVisualizer ! Tags: NET MVVM WPF Essentially the idea is that it is fairly common to want to display a simple message from the ViewModel to the user. The button used to dismiss the dialog is returned as the result. IErrorVisualizer. cf0 {par ?? - Tackling the Problem of Modal Dialogs in MVVM
One of the first issues you’ll run into when wading into the waters of MVVM is how to display model dialogs to the user while executing code in the view-model. One of the main benefits of MVVM is better application maintainability. In addition, MVVM promotes better workflow between designers and developers. In this case, the answer is simple: don’t use MVVM! If all you care about is quickly building an app, then just use code-behind and forget about MVVM, even if everyone else is doing it. Better not to use MVVM than sabotage it by taking shortcuts. Tony and Zuzana's World - Friday, January 28, 2011
| | |