| |
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.
|
4 Articles match "Namespace","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). iOS : Build multi-touch enabled applications on platforms such as WPF, Silverlight, and Apple's iPhone / iPad. WPF/SL : Develop cutting-edge UIs with Windows Presentation Foundation and Silverlight including coverage of Silverlight 5.0 Main Topic Day 1 Introduction to WPF and Silverlight (version 4.0 dynamic typing from C# 4.0, DevelopMentor Courses - Tuesday, March 1, 2011 NET 3.5 & 4.0: LINQ/EF, WCF, WPF/SL, MVVM, MEF Training Design WPF and Silverlight applications using the MVVM design pattern to separate application logic from presentation and facilitate Test Driven Development (TDD). Windows Presentation Foundation (WPF) and Silverlight (SL), Windows Communication Foundation (WCF), Entity Framework (EF) and WCF Data Services (OData). On the client side, you will get an introduction to WPF and Silverlight 4, which have new features aimed at developing business apps, and to WCF RIA Services, which allows you to rapidly build rich Internet apps that include end-to-end data validation. & 4.0 DevelopMentor Courses - Wednesday, February 22, 2012 NET 3.5 & 4.0: LINQ/EF, WCF, WPF/SL, MVVM, MEF Training Design WPF and Silverlight applications using the MVVM design pattern to separate application logic from presentation and facilitate Test Driven Development (TDD). Windows Presentation Foundation (WPF) and Silverlight (SL), Windows Communication Foundation (WCF), Entity Framework (EF) and WCF Data Services (OData). On the client side, you will get an introduction to WPF and Silverlight 4, which have new features aimed at developing business apps, and to WCF RIA Services, which allows you to rapidly build rich Internet apps that include end-to-end data validation. & 4.0 DevelopMentor Courses - Tuesday, March 1, 2011 |
37 Articles match "Namespace","WPF"
| The Latest from DevelopMentor | MORE | | Validation with Simple MVVM Toolkit INotifyDataErrorInfo is supported by Silverlight 4, but it is not supported by WPF and will only have limited support in Windows Phone 7.1. Similarly, the ModelBase class in the SimpleMvvmToolkit namespace, implements this interface, for scenarios in which you are not using WCF RIA Services. In version 2.1 of Simple MVVM Toolkit I added support for validation with INotifyDataErrorInfo. believe the best place to implement this interface is at the model-level. In the ViewModelDetailBase class, which accepts a TModel type argument, supports validation with an IsValid property. name Tony and Zuzana's World - Sunday, July 10, 2011 Access Control Service: Passive/Active Transition Sample In addition to the existing front ends (web [WS-Federation], console [SOAP & REST], Silverlight [REST]) and error handling , it now also includes a WPF client that shows the passive/active transition with a SOAP service as illustrated here. All the ACS interaction is encapsulated in a WPF user control that: retrieves the JSON feed. All you need to supply is the ACS namespace and the realm. Here you can find my updated ACS2 sample. displays a list of supported identity providers. triggers the sign in via a browser control. retrieves the token response. Have fun! www.leastprivilege.com - Thursday, June 23, 2011 Using the Message Mediator Service in MVVM Helpers actually work in all kinds of fields and technologies, but WPF has a special place in my heart – and it turns out this service is pretty useful for GUI applications to enable loose-coupling between elements, particularly when you are relying on other design patterns such as Model-View-ViewModel (MVVM). First, I am going to create a new WPF 4.0 xmlns:ViewModels= "clr-namespace:MessageMediatorExamples.ViewModels". One of the services exposed in the MVVM Helpers library is a Message Mediator. they can be used in any.NET project type). 3: ///. Any methods decorated with. Mark's Blog of Random Thoughts - Tuesday, February 22, 2011 | -
| 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. file -. - WPF Data Providers
One of the nifty new features of the WPF platform is the pluggable data providers. xmlns:cm = " clr-namespace:System.ComponentModel;assembly=WindowsBase ". Data binding in WPF is extremely powerful -- I am constantly amazed at how much procedural code you can dump in favor of markup with creative bindings. Tags: NET;Code;WPF It ships with two out of the box: ObjectDataProvider: allows you to execute binding expressions against an object and it's methods. XmlDataProvider: loads an XML data source and makes it available as a binding source. State, Age, Income. Mark's Blog of Random Thoughts - Wednesday, January 17, 2007 - Part 3: Shifting focus to the first available element in WPF
We've seen how to programatically control focus and that's all great stuff, but one thing I like to do with WPF is see how much of the repetitive or UI-specific code I can move into the XAML and keep out of the code behind. xmlns:FocusTest="clr-namespace:FocusTest". Tags: NET;WPF We can use the FocusManager.FocusedElement property to shift focus in XAML but it only works when the element exists in the main XAML file. In my specific case, I have a wizard-style application which utilizes a TabControl to move between the pages. but all is not lost! FocusTest.zip (17.88 - Part 2: Changing WPF focus in code
In the last post , I wrote about how focus is generally managed in WPF - we have focus scopes to track a single element within that scope for logical focus, and then one of those elements is given physical, or keyboard focus. First, there is a Keyboard class in WPF which exposes several methods and properties. xmlns:sys="clr-namespace:System;assembly=mscorlib". However, the most common request is to set initial focus to a specific control - remember that WPF doesn't do that by default. xmlns:sys="clr-namespace:System;assembly=mscorlib". Tags: NET WPF Mark's Blog of Random Thoughts - Thursday, September 4, 2008 - Part 2: Changing WPF focus in code
In the last post , I wrote about how focus is generally managed in WPF - we have focus scopes to track a single element within that scope for logical focus, and then one of those elements is given physical, or keyboard focus. First, there is a Keyboard class in WPF which exposes several methods and properties. xmlns:sys="clr-namespace:System;assembly=mscorlib". However, the most common request is to set initial focus to a specific control - remember that WPF doesn't do that by default. xmlns:sys="clr-namespace:System;assembly=mscorlib". Tags: NET;WPF Mark's Blog of Random Thoughts - Thursday, September 4, 2008 - Using Model – View – ViewModel with Silverlight
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. The complete model looks like this: 1: using System.ComponentModel; 2: 3: namespace SilverlightMVVMDemo.Model. The complete ViewModel class looks like this: 1: using System.ComponentModel; 2: using System.Windows; 3: using SilverlightMVVMDemo.Model; 4: 5: namespace SilverlightMVVMDemo.ViewModel. 11: {. The Problem Solver - Tuesday, April 7, 2009 - Part 3: Shifting focus to the first available element in WPF
We've seen how to programatically control focus and that's all great stuff, but one thing I like to do with WPF is see how much of the repetitive or UI-specific code I can move into the XAML and keep out of the code behind. xmlns:FocusTest="clr-namespace:FocusTest". Tags: NET WPF We can use the FocusManager.FocusedElement property to shift focus in XAML but it only works when the element exists in the main XAML file. In my specific case, I have a wizard-style application which utilizes a TabControl to move between the pages. but all is not lost! FocusTest.zip (17.88 %>
| | |