|
|
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.
|
21 Articles match "Runtime","WPF"
|
Related DevelopMentor Courses
|
MORE
|
|
Essential Silverlight 3
You'll get answers to these questions: How does Silverlight compare to Flash, AJAX, and WPF? The course focuses on Silverlight 3, which includes a scaled-down.NET runtime engine and library. Well, Silverlight's keyboard handling is far less capable than that of WPF; it has to cope with multiple browsers running on multiple operating systems and has to be more constrained due to the security restrictions of the plugi. Create Rich Internet Applications (RIAs) using languages and libraries that you already know. How do I create an "Out Of Browser" application?
DevelopMentor Courses
- Wednesday, June 17, 2009
Exploring.NET 3.5: WPF/SL, WCF, WF, LINQ Training
Windows Presentation Foundation (WPF) and Silverlight 3 (SL), Windows Communication Foundation (WCF), and Windows Workflow (WF). How is WPF different from Windows Forms? and Language-Integrated Query (LINQ), Windows Presentation Foundation (WPF), Silverlight 3 (SL), and Windows Communication Foundation (WCF). Behaviors allow us to control how the WCF runtime interacts with our service code. Introduction to WPF: Part 1 (Architecture, XAML) WPF is the GUI technology of the future. Day 4 Introduction to WPF: Part 3 (Data Binding).NET NET 3.0
DevelopMentor Courses
- Thursday, June 3, 2010
Exploring.NET 3.5: WPF/SL, WCF, WF, LINQ Training
Windows Presentation Foundation (WPF) and Silverlight 3 (SL), Windows Communication Foundation (WCF), and Windows Workflow (WF). How is WPF different from Windows Forms? and Language-Integrated Query (LINQ), Windows Presentation Foundation (WPF), Silverlight 3 (SL), and Windows Communication Foundation (WCF). Behaviors allow us to control how the WCF runtime interacts with our service code. Introduction to WPF: Part 1 (Architecture, XAML) WPF is the GUI technology of the future. Day 4 Introduction to WPF: Part 3 (Data Binding).NET NET 3.0
DevelopMentor Courses
- Wednesday, June 2, 2010
|
17 Articles match "Runtime","WPF"
|
The Latest from DevelopMentor
|
MORE
|
|
MVVM: Service Locator
That’s the idea behind this pattern, it allows you to loosely connect things together and bind them at runtime very easily. cf0 cf3 ///cf4 This method registers known WPF services with the service provider.par ??cf0 par ??} -->. ///. /// This method registers known WPF services with the. /// service provider. ///. This can be done at any time, and as many times as you like (as an example, consider a theme service you dynamically replace at runtime as the user selects the theme). anyway). What is the Service Locator? web application. It’s easy. cf0 {par ?? par ??
Mark's Blog of Random Thoughts
- Wednesday, January 27, 2010
Changing the Icon on a custom activity designer
protected override void Execute(CodeActivityContext context). {. // Obtain the runtime value of the Text input argument. Tags: NET Workflow WPF WF4 VS2010 Beta2 Note: This blog post is written using the.NET framework 4.0 Beta 2 When I create custom activity designers the icon that appears is usually one of the first things I want to change. Doing so in WF4 isn’t hard once you know where to look but if you don’t can be a bit of a challenge. Suppose I have a simple write line activity like this: [Designer( typeof (MyWriteLineDesigner))]. xmlns:x ="[link]. xmlns:x ="[link].
The Problem Solver
- Monday, January 25, 2010
Changing the Icon on a custom activity designer
protected override void Execute(CodeActivityContext context). {. // Obtain the runtime value of the Text input argument. Tags: NET Workflow WPF WF4 VS2010 Beta2 Note: This blog post is written using the.NET framework 4.0 Beta 2 When I create custom activity designers the icon that appears is usually one of the first things I want to change. Doing so in WF4 isn’t hard once you know where to look but if you don’t can be a bit of a challenge. Suppose I have a simple write line activity like this: [Designer( typeof (MyWriteLineDesigner))]. xmlns:x ="[link]. xmlns:x ="[link].
The Problem Solver
- Monday, January 25, 2010
|
-
|
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 -.
-
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. Keyboard focus is most often set through runtime activity - the user clicks on an element, or uses the TAB key to move around the UI. First, there is a Keyboard class in WPF which exposes several methods and properties. However, the most common request is to set initial focus to a specific control - remember that WPF doesn't do that by default.
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. All UI control properties that need to change at runtime do so by data binding to a ViewModel property. Tags: NET DevCenter WPF Silverlight The View – Model – ViewModel design pattern, also known as MVVM, is getting more popular these days. The View is data bound to a ViewModel. 11: {. 13: set. 14: {.
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. They allow for dynamic property assignment - where the value is determined at runtime vs. That's exactly what I need here - I want to find that TextBox at runtime and shift focus to it - just like I would have done in the code behind. Tags: NET;WPF So it might seem we are stuck with adding code behind logic (blech!) but all is not lost!
-
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. Keyboard focus is most often set through runtime activity - the user clicks on an element, or uses the TAB key to move around the UI. First, there is a Keyboard class in WPF which exposes several methods and properties. However, the most common request is to set initial focus to a specific control - remember that WPF doesn't do that by default.
Mark's Blog of Random Thoughts
- Thursday, September 4, 2008
-
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. They allow for dynamic property assignment - where the value is determined at runtime vs. That's exactly what I need here - I want to find that TextBox at runtime and shift focus to it - just like I would have done in the code behind. Tags: NET WPF So it might seem we are stuck with adding code behind logic (blech!) but all is not lost!
-
Changing the Icon on a custom activity designer
protected override void Execute(CodeActivityContext context). {. // Obtain the runtime value of the Text input argument. Tags: NET Workflow WPF WF4 VS2010 Beta2 Note: This blog post is written using the.NET framework 4.0 Beta 2 When I create custom activity designers the icon that appears is usually one of the first things I want to change. Doing so in WF4 isn’t hard once you know where to look but if you don’t can be a bit of a challenge. Suppose I have a simple write line activity like this: [Designer( typeof (MyWriteLineDesigner))]. xmlns:x ="[link]. xmlns:x ="[link].
The Problem Solver
- Monday, January 25, 2010
|
|
|