| |
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.
|
4 Articles match "2008","WPF"
| Related DevelopMentor Courses | MORE | | Essential Windows Presentation Foundation - WPF Training Use VS.NET 2008 (or 2010) and Expression Blend together to build your user interface. 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. What are the new features in WPF 3.5 It covers all versions - from WPF 3.0 DevelopMentor Courses - Wednesday, February 22, 2012 NET 3.5 & 4.0: LINQ/EF, WCF, WPF/SL, MVVM, MEF Training Design WPF and Silverlight applications using the MVVM design pattern to separate application logic from presentation and facilitate Test Driven Development (TDD). Windows Presentation Foundation (WPF) and Silverlight (SL), Windows Communication Foundation (WCF), Entity Framework (EF) and WCF Data Services (OData). As a.NET developer using Visual Studio 2005 or 2008, you will learn about new features of the C# programming language that allow you to do more with less code and have improved interoperability with COM libraries, MS Office and other programming languages. DevelopMentor Courses - Wednesday, February 22, 2012 Essential Windows Presentation Foundation - WPF Training Use VS.NET 2008 (or 2010) and Expression Blend together to build your user interface. 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. What are the new features in WPF 3.5 It covers all versions - from WPF 3.0 DevelopMentor Courses - Tuesday, March 1, 2011 |
38 Articles match "2008","WPF"
| The Latest from DevelopMentor | MORE | | MVVM: IUIVisualizer and event management with behaviors Open the project in Visual Studio 2008 SP1, it should build and run without any issues. The type must be a WPF Window-derived type (i.e. This is done a little differently if you’ve not done much WPF work. WPF allows us to customize the visuals however we like, so here the panel has been replaced with a Canvas (allowing pixel positioning), and each item is drawn as a DataTemplate. Tags: NET MVVM WPF You can change the properties of an image, remove an image or add additional images. It displays a “Picture Properties” dialog using the IUIVisualizer service. Mark's Blog of Random Thoughts - Friday, February 5, 2010 MVVM: Views and ViewModels Copy the project template into your Visual Studio 2008 templates directory located off your user documents - mine is at %UserProfile%DocumentsVisual Studio 2008TemplatesProjectTemplatesVisual C#Windows. Views are the UI presentation of data - in the case of a WPF/Silverlight application this is most commonly the XAML and XAML code behind files (they are considered a single element together). That way, my ViewModel sticks with base (non-WPF) types. This is necessary under WPF 3.5 Tags: NET Code MVVM WPF Project Template. Dependencies. ViewModels. Views. Views. Mark's Blog of Random Thoughts - Friday, January 22, 2010 MVVM Helpers 1: Views and ViewModels Copy the project template into your Visual Studio 2008 templates directory located off your user documents - mine is at %UserProfile%DocumentsVisual Studio 2008TemplatesProjectTemplatesVisual C#Windows. Views are the UI presentation of data - in the case of a WPF/Silverlight application this is most commonly the XAML and XAML code behind files (they are considered a single element together). That way, my ViewModel sticks with base (non-WPF) types. This is necessary under WPF 3.5 Tags: NET Code MVVM WPF Project Template. Dependencies. ViewModels. Views. Views. Mark's Blog of Random Thoughts - Friday, January 22, 2010 | -
| The Best from DevelopMentor | MORE | - 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. Tags: NET;WPF 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. If you use UserControls it turns out that the approach doesn't work because that element is loaded separately and not available when the initial focus is being determined. 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. 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. However, a popular way to develop WPF applications is to separate out chunks of UI into separate UserControls. Tags: NET WPF 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. However, the most common request is to set initial focus to a specific control - remember that WPF doesn't do that by default. However, a popular way to develop WPF applications is to separate out chunks of UI into separate UserControls. Tags: NET;WPF 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. Tags: NET WPF 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. If you use UserControls it turns out that the approach doesn't work because that element is loaded separately and not available when the initial focus is being determined. but all is not lost! - MVVM: Views and ViewModels
Copy the project template into your Visual Studio 2008 templates directory located off your user documents - mine is at %UserProfile%DocumentsVisual Studio 2008TemplatesProjectTemplatesVisual C#Windows. Views are the UI presentation of data - in the case of a WPF/Silverlight application this is most commonly the XAML and XAML code behind files (they are considered a single element together). That way, my ViewModel sticks with base (non-WPF) types. This is necessary under WPF 3.5 Tags: NET Code MVVM WPF Project Template. Dependencies. ViewModels. Views. Views. - Six Things That’ll Surprise You About.NET 4.0
For example, one style of development where developers sketch out a scenario in code involving a set of classes before they are completely written was painful in VS 2008 (e.g. that VS 2010 was rewritten in WPF and as part of that rewrite now has true multi-monitor support? WF 4 has a nice GUI workflow building designer that is part of the VS 2010 tools and moreover that designer is rehostable in your own Windows Forms or WPF applications. 5 WPF. that the WPF and Silverlight designers in VS 2010 are greatly improved. WPF has Real Text Support. 2 ASP.NET. Michael C. Kennedy's Weblog - Wednesday, November 11, 2009 - Creating popup windows in XBAP applications
Normally this is not allowed - if you try to create a top-level window you will get a SecurityException because WPF asks for UIPermission which is strictly prohibited when hosted in the browser. That associates a "parent" window and without it, the Popup class asserts UIPermission which will fail in the browser environment.NET WPFA colleague at DevelopMentor recently asked me about creating popup windows in XAML browser applications (XBAP). It's the same underlying class that ToolTip, Menu, and ComboBox use to display drop-down menus and overlays and it is browser-hosting aware! %>
| | |