| |
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.
|
6 Articles match "CLR","WPF"
| Related DevelopMentor Courses | MORE | | Screening C# Candidates: Let’s Play 20 Questions! For example, someone might be called upon to build a WPF app retrieving data from a WCF service that queries a SQL database using Entity Framework with Ninject for dependency injection and MOQ for unit testing. Of course, the questions are not meant to be exhaustive and are only scratching the surface of CLR and C# fundamentals. Neither do the questions touch on any of the “pillars” of the.NET Framework API, such as data access (Entity Framework), web services (WCF), or presentation platforms (WPF, SL, ASP.NET MVC). This is the purpose of the technical phone screen. DevelopMentor Courses - Tuesday, February 28, 2012 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). EF : Decouple your entity model from the data using Plain Old CLR Objects (POCOs). 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 and jQuery. 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). that allow you to use POCO classes (Plain Old CLR Objects) in N-Tier applications. EF allows both for data readers and LINQ queries using objects, including POCOs (Plain Old CLR Objects) that are completely ignorant of persistence concerns. & 4.0 DevelopMentor Courses - Wednesday, February 22, 2012 |
26 Articles match "CLR","WPF"
| The Latest from DevelopMentor | MORE | | Screening C# Candidates: Let’s Play 20 Questions! For example, someone might be called upon to build a WPF app retrieving data from a WCF service that queries a SQL database using Entity Framework with Ninject for dependency injection and MOQ for unit testing. Of course, the questions are not meant to be exhaustive and are only scratching the surface of CLR and C# fundamentals. Neither do the questions touch on any of the “pillars” of the.NET Framework API, such as data access (Entity Framework), web services (WCF), or presentation platforms (WPF, SL, ASP.NET MVC). This is the purpose of the technical phone screen. DevelopMentor Courses - Tuesday, February 28, 2012 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. Technical CLR Delegates EventsOne of the main features of the.NET Framework is to provide automatic memory management via garbage collection. You might think this would solve the problem of memory leaks in managed applications, but the effectiveness of the garbage collector can be hampered by your code. If you do not set these references to null, the GC will not collect them. public class System. Yikes! Tony and Zuzana's World - Tuesday, March 22, 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 -. - 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. Technical CLR Delegates EventsOne of the main features of the.NET Framework is to provide automatic memory management via garbage collection. You might think this would solve the problem of memory leaks in managed applications, but the effectiveness of the garbage collector can be hampered by your code. If you do not set these references to null, the GC will not collect them. public class System. Yikes! Tony and Zuzana's World - Tuesday, March 22, 2011 - 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. Tags: NET DevCenter WPF Silverlight The View – Model – ViewModel design pattern, also known as MVVM, is getting more popular these days. 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. 14: {. 19: }. The Problem Solver - Tuesday, April 7, 2009 %>
| | |