|
|
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 "Runtime","WPF"
|
Related DevelopMentor Courses
|
MORE
|
|
Essential Silverlight 3
NET runtime engine and library into a cross-browser, cross-platform plugin. You'll get answers to these questions: How does Silverlight compare to Flash, AJAX, and WPF? 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 In this course, you learn to: Identify when and where Silverlight should be used Use Expression Blend to design your user interface Use Visual Studio 2008 to build a Silverlight project and manage its code using C# Exploit the layout controls to create compelling user interfaces Incorporate Silverlight content into your existing web sites Build user and custom controls that support templates and styling Use Behaviors, Actions and Triggers to create reusable functionality across applications Integrate animations, special effects, perspective transforms and media to create a professional UI Exploit
DevelopMentor Courses
- Wednesday, June 17, 2009
Mastering .NET 3.5 featuring LINQ, WPF, WCF & WF
Use LINQ to filter, sort, and group in-memory collections of objects Create LINQ to SQL queries to execute SQL Server stored procedures and perform updates Write LINQ to XML queries to search XML documents and save them to disk Build rich client applications with XAML and WPF that run standalone or in a browser Use WPF data binding and XAML to separate your code and UI elements Build service-oriented WCF services, as well as REST-based services and RSS / ATOM feeds Manage concurrency and state with WCF and handle exceptions appropriately Design robust workflow-oriented programs with Windows Workflow
DevelopMentor Courses
- Friday, June 12, 2009
What's New in .NET 4.0
NET runtime services including the garbage collector. Build Windows 7 ready applications with WPF 4.0. NET platform, from the underlying runtime to programming languages and application frameworks. In addition to these far reaching changes, WPF and WCF have both received some polishing: WPF brings Windows 7 features to the framework and amongst other changes WCF service configuration is much simpler Leverage new features of C# 4.0, including named and optional parameters and dynamic typing.
DevelopMentor Courses
- Monday, August 10, 2009
|
15 Articles match "Runtime","WPF"
|
The Latest from DevelopMentor
|
MORE
|
|
MVVM: Service Locator
allows you to loosely connect things together and bind them at runtime very easily.
So, cf0 cf3 ///cf4 This method registers known WPF services with the service provider.par ??cf0 known WPF services with the
/// service
provider. replace at runtime In this post, we’ll explore the service locator (called ServiceProvider in
the the library) and introduce the specific services included with the MVVM Helper library
(as
Mark's Blog of Random Thoughts
- Wednesday, January 27, 2010
Changing the Icon on a custom activity designer
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))]
public sealed class MyWriteLine : CodeActivity
{
// Define an activity input argument of type string
public InArgument Text { get; set; }
// If your activity returns a value, derive from CodeActivity
// and return the value from the Execute method.
protected override void Execute(CodeActivityContext
The Problem Solver
- Monday, January 25, 2010
MVVM: Views and ViewModels
in the case of a WPF/Silverlight application this is most commonly the XAML and
XAML sticks with base (non-WPF) types. This is necessary under WPF 3.5 runtime vs. NET Code In the previous post, I provided a link to the project template you can use to start
a a new MVVM project using
Mark's Blog of Random Thoughts
- Friday, January 22, 2010
|
-
|
The Best from DevelopMentor
|
MORE
|
-
WPF MVVM Helper Library (WPF + MVVM = testability)
usage around the WPF and Silverlight technology stack. When teaching WPF, I
always always introduce students to MVVM as part of the Essential WPF class, it's an incredibly
useful It's evolution owes a lot to various blog posts, WPF Disciples, and other WPF leaders;
I There's been a lot of talk about the Model-View-ViewModel pattern recently and it's
usage useful pattern that really separates the UI from the code behind behavior.
-
Part 2: Changing WPF focus in code
post , I wrote about how focus is generally managed in WPF - we have focus scopes
WPF thinks has focus in the window:
IInputElement
focus is most often set through runtime activity - the user clicks on an element,
in WPF which exposes several methods and properties. In the last
to track a single element within that scope for logical focus, and then one of those
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. 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. Josh Smith did an excellent screen cast for Pixel8 on using MVVM with WPF, you can find it here . Even thought the UI technology used doesn't change the basic MVVM pattern there are some subtle differences, like not easily being able to use ICommand in Silverlight,
The Problem Solver
- Tuesday, April 7, 2009
-
Part 3: Shifting focus to the first available element in WPF
thing I like to do with WPF is see how much of the repetitive or UI-specific code
out that you can't get WPF to do this directly from XAML - because the TextBox isn't
at runtime vs. find that TextBox at runtime and shift focus to it - just like I would have done in
We've seen how to programatically control focus and that's all great stuff, but one
I can move into the XAML and keep out of the code behind.
-
Part 2: Changing WPF focus in code
post , I wrote about how focus is generally managed in WPF - we have focus scopes
to WPF thinks has focus in the window:
focus is most often set through runtime activity - the user clicks on an element,
or WPF which exposes several methods and properties. In the last
post to
Mark's Blog of Random Thoughts
- Thursday, September 4, 2008
-
Part 3: Shifting focus to the first available element in WPF
thing I like to do with WPF is see how much of the repetitive or UI-specific code
I out that you can't get WPF to do this directly from XAML - because the TextBox isn't
a runtime vs. find that TextBox at runtime and shift focus to it - just like I would have done in
the We've seen how to programatically control focus and that's all great stuff, but one
thing I
-
Implementing Drag/Drop with TabControl
It's been a long time since I blogged anything specific on WPF -- I've been doing a lot of it lately, along with some Silverlight. Recently I was experimenting with dragging tabs around on a TabControl at runtime. My end goal is really to implement it with Silverlight 2, but I've found it's much easier to prototype things in WPF and then port them over because the debugging experience is easier with WPF.
I I didn't want to create derived implementations of any classes - I wanted something
that
|
|
|