| |
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.
|
2 Articles match "Win32","WPF"
| Related DevelopMentor Courses | MORE | | 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 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 - Tuesday, March 1, 2011 |
7 Articles match "Win32","WPF"
| The Latest from DevelopMentor | MORE | | Removing the Close Button on a WPF window Of course, I’m using WPF to show the simulator – and I wanted to create a topmost window that did not have a Close button on it. However, with a little Win32 mojo we can get the desired effect: public partial class MainWindow. {. Tags: NET Code WPF Today I was building a simple simulator to test some events to a new piece of hardware I’m working on. Imagine my surprise when I realized there was not a set of flags you could supply to the Window object to actually achieve this result! public MainWindow(). {. void MainWindow_SourceInitialized(object sender, EventArgs e). {. Mark's Blog of Random Thoughts - Monday, March 22, 2010 It's been such a long time. [WPF + Windows 7] So I built an interop library to access: Scenic Ribbon (native Win32 ribbon) in Windows Forms. Here's a simple example of using the gestures and library support in a WPF application. Gesture example with WPF. Tags: NET Code WPF Well, it's been a while since I posted anything, I'm sorry! I've been busy working with Windows 7 and Microsoft Surface touch-computing. To that end, I needed to get access to some of the new Windows 7 APIs in managed code. which isn't supported yet (but is coming). Native WM_TOUCH and WM_GESTURE messages. Sensor API. Have fun! Mark's Blog of Random Thoughts - Thursday, January 29, 2009 Part 1: It's Basically Focus As you may know, in WPF there are two types of focus: logical focus and keyboard focus. This distinction is modeled after Win32 itself -- each thread has one HWND it has identified to have focus but only one of them really has input focus at any given point in time. In WPF, logical focus is tracked and managed by a Focus Scope. Well, t he elements in WPF that create focus scopes by default are Window , Menu , ContextMenu and ToolBar. Without focus scopes to track the original focus holder, WPF wouldn't know where focus should go. Tags: NET WPF Mark's Blog of Random Thoughts - Tuesday, September 2, 2008 | -
| The Best from DevelopMentor | MORE | - (Possibly) better validations in WPF
I've never cared much for the built-in validation mechanisms provided by WPF. just don't think any of them feel natural to the way we build WPF applications today. Basically, there are essentially three mechanisms built into WPF for validations: Validation Rules. Finally, IDataErrorInfo was added with WPF 3.5 Often, you will use one or several of these validation techniques in your WPF application to check the input. NET WPFExceptions. IDataErrorInfo. to support validations inside the business objects directly. string Error { get; }. Length == 0 ? - Removing the Close Button on a WPF window
Of course, I’m using WPF to show the simulator – and I wanted to create a topmost window that did not have a Close button on it. However, with a little Win32 mojo we can get the desired effect: public partial class MainWindow. {. Tags: NET Code WPF Today I was building a simple simulator to test some events to a new piece of hardware I’m working on. Imagine my surprise when I realized there was not a set of flags you could supply to the Window object to actually achieve this result! public MainWindow(). {. void MainWindow_SourceInitialized(object sender, EventArgs e). {. - (Possibly) better validations in WPF
I've never cared much for the built-in validation mechanisms provided by WPF. just don't think any of them feel natural to the way we build WPF applications today. Basically, there are essentially three mechanisms built into WPF for validations: Validation Rules. Finally, IDataErrorInfo was added with WPF 3.5 Often, you will use one or several of these validation techniques in your WPF application to check the input. Tags: NET WPF Exceptions. IDataErrorInfo. to support validations inside the business objects directly. string Error { get; }. else. {. - Part 1: It's Basically Focus
As you may know, in WPF there are two types of focus: logical focus and keyboard focus. This distinction is modeled after Win32 itself -- each thread has one HWND it has identified to have focus but only one of them really has input focus at any given point in time. In WPF, logical focus is tracked and managed by a Focus Scope. Well, t he elements in WPF that create focus scopes by default are Window , Menu , ContextMenu and ToolBar. Without focus scopes to track the original focus holder, WPF wouldn't know where focus should go. Tags: NET WPF - It's been such a long time. [WPF + Windows 7]
So I built an interop library to access: Scenic Ribbon (native Win32 ribbon) in Windows Forms. Here's a simple example of using the gestures and library support in a WPF application. Gesture example with WPF. Tags: NET Code WPF Well, it's been a while since I posted anything, I'm sorry! I've been busy working with Windows 7 and Microsoft Surface touch-computing. To that end, I needed to get access to some of the new Windows 7 APIs in managed code. which isn't supported yet (but is coming). Native WM_TOUCH and WM_GESTURE messages. Sensor API. Have fun! - (Possibly) better validations in WPF
I've never cared much for the built-in validation mechanisms provided by WPF. just don't think any of them feel natural to the way we build WPF applications today. Basically, there are essentially three mechanisms built into WPF for validations: Validation Rules. Finally, IDataErrorInfo was added with WPF 3.5 Often, you will use one or several of these validation techniques in your WPF application to check the input. Tags: NET;WPF Exceptions. IDataErrorInfo. to support validations inside the business objects directly. string Error { get; }. else. {. - Part 1: It's Basically Focus
As you may know, in WPF there are two types of focus: logical focus and keyboard focus. This distinction is modeled after Win32 itself -- each thread has one HWND it has identified to have focus but only one of them really has input focus at any given point in time. In WPF, logical focus is tracked and managed by a Focus Scope. Well, t he elements in WPF that create focus scopes by default are Window , Menu , ContextMenu and ToolBar. Without focus scopes to track the original focus holder, WPF wouldn't know where focus should go. Tags: NET;WPF %>
| | |