| |
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.
|
13 Articles match "Pattern","WPF"
| Related DevelopMentor Courses | MORE | | Guerrilla.NET (US) Training WPF/SL : Develop cutting-edge UIs with Windows Presentation Foundation and Silverlight including coverage of Silverlight 5.0 MVVM : Learn advanced WPF / Silverlight design patterns and techniques including MVVM (Model-View-ViewModel). Learn about IaaS, PaaS, and design patterns for scalable cloud-based applications. DI/IoC : Use powerful OO design patterns and techniques to build loosely-coupled, testable, and maintainable applications including Dependency Injection (DI), Inversion of Control (IoC), and unit testing. dynamic typing from C# 4.0, and jQuery. DevelopMentor Courses - Tuesday, March 1, 2011 Scott Reed: Repository pattern improvements Introduction to WPF and Silverlight • ASP.NET MVC 3.0: Beyond the Basics • LINQ to Objects and LINQ to XML • Entity Framework • Model-View-ViewModel for WPF and Silverlight • PFx: Task and The Parallel I just finished a Guerrilla.NET in Boston with Michael Kennedy and Mark Smith. Here are the topics we covered. DevelopMentor Courses - Saturday, May 7, 2011 Essential Windows Presentation Foundation - WPF Training Use new technologies such as LINQ and XLINQ with WPF. Utilize your existing controls, forms and resources from Windows Forms with WPF. Come and get familiar with the dynamic and creative application development that WPF enables. Learn how to best utilize WPF for both new projects as well as porting existing Windows Forms, MFC or traditional Win32 application over to this new platform. You'll get answers to these questions: What are the main building blocks of a WPF application and how do I use them? What are the new features in WPF 3.5 to WPF 4.0 DevelopMentor Courses - Wednesday, February 22, 2012 |
30 Articles match "Pattern","WPF"
| The Latest from DevelopMentor | MORE | | Join Me at Guerrilla.NET in November You learn a myriad of patterns and best practices, and you get hands-on experience developing applications using Visual Studio 2012 and Windows 8. Model-View-ViewModel for WPF and Metro. Cloud Computing for the.NET Developer: IaaS, PaaS, and Patterns. Design Patterns for Testable Applications. Just a quick announcement for an developer upcoming event I’ll be participating in… Early November I’ll be co-teaching DevelopMentor’s biggest.NET developer event of the year in Los Angeles: Guerrilla.NET. hope to see you there! mkennedy. Guerrilla.NET. Michael C. Kennedy's Weblog - Tuesday, September 25, 2012 How to get started with Knockout.js this become somewhat more like Silverlight/WPF. Not that it is exactly the same but it uses the same MVVM pattern and data binding that Silverlight developers are used to. Once you get into doing more client side JavaScript code with business applications and REST services you are going to run into the question of how to construct the client side HTML required to show the data to the users. Using jQuery Assuming most people are going to be using jQuery on the client you might start with some jQuery code to generate HTML. click( function () {. $.getJSON( Using templates. Enjoy! The Problem Solver - Monday, February 6, 2012 How to get started with Knockout.js this become somewhat more like Silverlight/WPF. Not that it is exactly the same but it uses the same MVVM pattern and data binding that Silverlight developers are used to. Once you get into doing more client side JavaScript code with business applications and REST services you are going to run into the question of how to construct the client side HTML required to show the data to the users. Using jQuery Assuming most people are going to be using jQuery on the client you might start with some jQuery code to generate HTML. click( function () {. $.getJSON( Using templates. Enjoy! The Problem Solver - Monday, February 6, 2012 | -
| The Best from DevelopMentor | MORE | - WPF MVVM Helper Library (WPF + MVVM = testability)
There's been a lot of talk about the Model-View-ViewModel pattern recently and it's usage around the WPF and Silverlight technology stack. When teaching WPF, I always introduce students to MVVM as part of the Essential WPF class, it's an incredibly useful pattern that really separates the UI from the code behind behavior. It's evolution owes a lot to various blog posts, WPF Disciples, and other WPF leaders; I certainly didn't invent anything radically new but borrowed heavily from all kinds of places as I built various classes I needed for my own work. - Using Model – View – ViewModel with Silverlight
The View – Model – ViewModel design pattern, also known as MVVM, is getting more popular these days. have found it extremely easy to use when developing very different applications and have used the design pattern recently in both ASP.NET, WPF and Silverlight applications. Josh Smith did an excellent screen cast for Pixel8 on using MVVM with WPF, you can find it here. Tags: NET DevCenter WPF Silverlight However easy as it might be is seems to confuse people as I have seen some terrible examples where people make a complete mess of things. 11: {. 13: set. The Problem Solver - Tuesday, April 7, 2009 - MVVM: Views and ViewModels
Views are the UI presentation of data - in the case of a WPF/Silverlight application this is most commonly the XAML and XAML code behind files (they are considered a single element together). That way, my ViewModel sticks with base (non-WPF) types. This is necessary under WPF 3.5 This is a common pattern found in almost every MVVM framework out there, but it’s essentially a pair of delegates that are called when the command is checked and when it is invoked. Tags: NET Code MVVM WPF Project Template. Let's look a little closer at the project structure. Views. - Simple MVVM Toolkit: Feature Rich with WPF and WP7 Support
On top of all that I’ve also added support for both WPF ( Windows Presentation Foundation ) and WP7 ( Windows Phone ). d like to emphasize once again that, while the toolkit includes every feature you need to develop robust UI applications using the MVVM design pattern , the approach I’ve taken focuses on simplicity and ease of use. Technical MEF MVVM Silverlight WP7 WPFve included in the download sample applications for these features, including how to drive page navigation from business logic in view-models with command-binding. What’s next? Tony and Zuzana's World - Friday, February 4, 2011 - WCF Duplex Messaging
There are many ways that messages can be exchanged between two parties in a service based system: the client can send messages to the server and never get any back; the client can send a message and wait for a response; the client and service can send eachother messages without any pre-defined pattern; the client can send the service a message but not wait synchronously for a response and then then service can send a message back asynchronously; and there are many others. This is because your client is probably a Rich Client GUI based application (Windows Forms or WPF). .NET Meanderings - Tuesday, June 9, 2009 - Building a Leak-Proof Eventing Model
In full.NET (and consequently WPF) this code works like a charm. Best of all, this approach works across the board with full.NET / WPF, Silverlight and Windows Phone. So what does the code look like for this pattern? The beauty of this pattern is that using a leak-proof publisher does not look any different than using a leak-prone publisher. One of the main features of the.NET Framework is to provide automatic memory management via garbage collection. The GC will not release memory from objects that have root references, which can be local or static variables. Yikes! Tony and Zuzana's World - Tuesday, March 22, 2011 - NativeActivity – A Tricky Beast
Here you have the ability to implement the async pattern (BeginExecute / EndExecute) to perform short lived async operations where you do not want the workflow persisted (e.g. have written a designer to go with this (designers in WF4 are WPF based). I’m writing Essential Windows Workflow Foundation 4.0 with Maurice for DevelopMentor. One of the things that I think is less than obvious is the behavior of NativeActivity. What is NativeActivity I hear you ask? Well there are a number of models for building custom activities in WF4. However, what if you are missing a building block? .NET Meanderings - Tuesday, February 9, 2010 %>
| | |