| |
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 "Property","WPF"
| Related DevelopMentor Courses | MORE | | Mark Smith: Dynamic type binding in WPF 4.5 One of the new features in WPF 4.5 This enables adding dynamic properties to types where the actual shape of the type is not known until runtime. is data-binding support for ICustomTypeProvider. For example, where the data itself is being … Continue reading → DevelopMentor Courses - Saturday, March 10, 2012 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 Essential Silverlight 5 Training You'll get answers to these questions: What is Silverlight, and when should I use it in preference to HTML5 or WPF? Fundamentals This module will provide you with an overview of four core aspects of Silverlight development: the use of eXtensible Application Markup Language (XAML); the code-beside programming model; the concept of the visual tree; and the use and declaration of dependency and attached properties. Deliver online business applications, multimedia websites and games to Windows, Mac OS and Windows Phone 7. ? How do I let clients run my application out of-browser? DevelopMentor Courses - Wednesday, February 22, 2012 |
66 Articles match "Property","WPF"
| The Latest from DevelopMentor | MORE | | How to get started with Knockout.js this become somewhat more like Silverlight/WPF. The first two data bind the value property of the control to the firstName and lastName from the ViewModel. 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( getJSON( "/services/books" ).then( The Problem Solver - Monday, February 6, 2012 How to get started with Knockout.js this become somewhat more like Silverlight/WPF. The first two data bind the value property of the control to the firstName and lastName from the ViewModel. 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( getJSON( "/services/books" ).then( The Problem Solver - Monday, February 6, 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. To use this for a non-web host, set the KernelContainer’s Kernel property to an kernel initialized with a Ninject module that binds your types and interfaces. In the.svc file for a web host, you would set the Factory property to NinjectServiceHostFactory. Download the code for this post. Enjoy. 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. 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. The behavior can be adjusted through the IsAsynchronous property of the data provider. Notice how we use a new property of the BindingExpression called XPath. This property allows you to identify which element(s) you want to load from the XML data source. Again, we use the XPath property to define what piece of information we are binding to -- attributes of our entry in this case. Tags: NET;Code;WPF State, Age, Income. xmlns = " [link] ". xmlns:x = " [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. 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. They allow for dynamic property assignment - where the value is determined at runtime vs. XAML compile time. Tags: NET;WPF So it might seem we are stuck with adding code behind logic (blech!) Thanks Andrew! >. - 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. There is a Keyboard.FocusedElement read-only property which returns the current keyboard focused element, and there is a Keyboard.Focus method which attempts to change keyboard focus. Tags: NET WPF Remember that logical focus != <Window xmlns="[link]. 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. There is a Keyboard.FocusedElement read-only property which returns the current keyboard focused element, and there is a Keyboard.Focus method which attempts to change keyboard focus. Tags: NET;WPF Remember that logical focus != <Window xmlns="[link]. Mark's Blog of Random Thoughts - Thursday, September 4, 2008 - Rehosting the Workflow Designer in WF4
This exposes the actual design surface through the View property and the linked property sheet through the PropertyInspectorView property. 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. 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(); 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 Model The Model I am using is very simple and has two read-write properties, FirstName and LastName, and a single read-only property, FullName. The FullName property represents some business rule on how a name should be formatted. Tags: NET DevCenter WPF Silverlight 11: {. 13: set. The Problem Solver - Tuesday, April 7, 2009 %>
| | |