| |
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.
|
14 Articles match "Class","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. Can a class have more than one direct base class? What keyword makes a member visible to inherited classes? What keyword makes a class visible only within its assembly? What keyword prevents a class from being used as a base class? What keyword constrains a generic type argument to derive from a particular class? > reference 2. 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 : Write classes that can track changes to their own state for n-tier development with Entity Framework. iOS : Build multi-touch enabled applications on platforms such as WPF, Silverlight, and Apple's iPhone / iPad. Learn to write code using new.NET class libraries like LINQ and Silverlight. dynamic typing from C# 4.0, and 5.0 DevelopMentor Courses - Tuesday, March 1, 2011 Brad Cunningham: Online training from DevelopMentor have authored a good portion of the WPF content (and more will be coming online in the future) and will be teaching some of the WPF classes that are upcoming. Just wanted to post a quick note to introduce a compelling new product from the team at DevelopMentor. have been teaching with DM for a while now and have been and have been working with them to bring the future of training to the web. Learning Line is the new online training platform from DevelopMentor. Michael Kennedy did a great introduction to the system. Check it out and let us know what you think DevelopMentor Courses - Tuesday, February 19, 2013 |
77 Articles match "Class","WPF"
| The Latest from DevelopMentor | MORE | | Join Me at Guerrilla.NET in November If you haven’t been to Guerrilla.NET, it’s a very unique and memorable event – it’s unlike almost any other training class you’ve seen. Learn to write code using new.NET class libraries like Entity Framework 5, MVC 4, and even the new Windows Runtime (WinRT). Model-View-ViewModel for WPF and Metro. PFx: The Parallel Class and Concurrent Data Structures. We’ve just updated the outline with the most important current and upcoming technologies (see below). hope to see you there! Feel free to contact me with any questions. mkennedy. Michael C. Kennedy's Weblog - Tuesday, September 25, 2012 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. Can a class have more than one direct base class? What keyword makes a member visible to inherited classes? What keyword makes a class visible only within its assembly? What keyword prevents a class from being used as a base class? What keyword constrains a generic type argument to derive from a particular class? > reference 2. DevelopMentor Courses - Tuesday, February 28, 2012 Using Ninject with WCF Services In an ASP.NET MVC application, it is possible to use repositories directly from controllers, but it may be desirable to place a WCF services façade over the data access layer, so that other kinds of clients, such as Silverlight or WPF, won’t directly access the database. public class GreetingService : IGreetingService { private IGreetingRepository _greetingRepo; public GreetingService( IGreetingRepository greetingRepo) { _greetingRepo = greetingRepo; } public string Hello() { return _greetingRepo.GetGreeting(); } }. The code in the Test class then becomes nice and clean. Tony and Zuzana's World - Monday, October 24, 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. bit of history -- the library is really just a place where I dump all kinds of useful utility classes, helpers, wrappers, etc. < Window x : Class ="TestMvvm.MainWindow". Tags: NET WPF that I tend to use a lot. file -. - WPF Data Providers
One of the nifty new features of the WPF platform is the pluggable data providers. Both of these derive from the abstract class System.Data.DataSourceProvider which implements the binding glue ( INotifyPropertyChanged ) needed for data binding. Another interesting thing about this class is that we can define the XML data inline within the XAML document. 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 State, Age, Income. xmlns = " [link] ". 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. Creating a markup extension is trivial - you just extend the MarkupExtension base class and implement the ProvideValue method. With this new extension, I can now add a single line of code to each user control: <UserControl x:Class="FocusTest.Page2". Tags: NET;WPF So it might seem we are stuck with adding code behind logic (blech!) - 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. This is controlled through the KeyboardNavigation class which is used when the user presses a key that changes focus (TAB, SHIFT+TAB, Up, Down, etc.). However, a popular way to develop WPF applications is to separate out chunks of UI into separate UserControls. 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. This is controlled through the KeyboardNavigation class which is used when the user presses a key that changes focus (TAB, SHIFT+TAB, Up, Down, etc.). However, a popular way to develop WPF applications is to separate out chunks of UI into separate UserControls. Mark's Blog of Random Thoughts - Thursday, September 4, 2008 - Rehosting the Workflow Designer in WF4
The WorkflowDesigner The WorkflowDesigner is the main class to work with. Both these properties point to ready to use WPF UIElement’s so, as long as the host used WPF, adding them to a form is easy. The toolbox on the left if another standard WPF control called the ToolboxControl. Again easy to add to any WPF form. public class ValidationErrorService : IValidationErrorService. {. Tags: NET Workflow WPF WF4 VS2010 Beta2 Note: This blog post is written using the.NET framework 4.0 Now that is more like it! new DesignerMetadata().Register(); Sweet. The Problem Solver - Wednesday, December 23, 2009 - 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 ViewModel is just another class. 5: public class Customer : INotifyPropertyChanged. 6: public partial class CustomerView : UserControl. The ViewModel class is the one that glues the View and the Model together, hence its name. Tags: NET DevCenter WPF Silverlight 11: {. 13: set. The Problem Solver - Tuesday, April 7, 2009 %>
| | |