| |
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.
|
15 Articles match "Windows","XAML"
| Related DevelopMentor Courses | MORE | | Matthijs Hoekstra over Visual Studio 2012 en ontwikkelen voor Windows 8 Ze zijn aanwezig op de Visual Studio 2012 launch bij Info Support in Veenendaal en hebben het over het ontwikkelen voor Windows 8 met behulp van Visual Studio 2012. Links: Blog: [link] Twitter: https://twitter.com/mahoekst XAML Spy: [link] Met dank aan onze sponsor RedGate. In deze podcast spreekt Maurice de Beijer met Matthijs Hoekstra. Podcast DotNed VS2012 Windows8 The Problem Solver - Monday, September 17, 2012 Guerrilla.NET (UK) Training Develop network services with Windows Communication Foundation Develop cutting-edge UIs with Silverlight 4.0 Use data binding to create rich data driven Silverlight applications Use powerful new security models with Windows Identity Foundation Debug.NET application beyond using Visual Studio breakpoints Come and learn to build robust.NET applications! How do I develop network services with Windows Communication Foundation? In this module we look at the Silverlight architecture and how user interfaces are designed using a markup language XAML. couldn't? Register now. DevelopMentor Courses - Tuesday, March 1, 2011 Updating workflow instances using an update map One of the really important new features in Windows Workflow Foundation 4.5 Create your initial workflow definition This is the simple step as anyone that has been using Windows Workflow Foundation 4 has already been doing this. In this step we prepare the workflow definition, the XAML file, for update using the DynamicUpdateServices.PrepareForUpdate() on an ActivityBuilder. is the capability to version workflows and workflow instances. What should you do, upgrade exiting instances or run multiple definitions side by side? Make some changes to the workflow definition. The Problem Solver - Wednesday, October 10, 2012 |
51 Articles match "Windows","XAML"
| The Latest from DevelopMentor | MORE | | Updating workflow instances using an update map One of the really important new features in Windows Workflow Foundation 4.5 Create your initial workflow definition This is the simple step as anyone that has been using Windows Workflow Foundation 4 has already been doing this. In this step we prepare the workflow definition, the XAML file, for update using the DynamicUpdateServices.PrepareForUpdate() on an ActivityBuilder. is the capability to version workflows and workflow instances. What should you do, upgrade exiting instances or run multiple definitions side by side? Make some changes to the workflow definition. The Problem Solver - Wednesday, October 10, 2012 Updating workflow instances using an update map One of the really important new features in Windows Workflow Foundation 4.5 Create your initial workflow definition This is the simple step as anyone that has been using Windows Workflow Foundation 4 has already been doing this. In this step we prepare the workflow definition, the XAML file, for update using the DynamicUpdateServices.PrepareForUpdate() on an ActivityBuilder. is the capability to version workflows and workflow instances. What should you do, upgrade exiting instances or run multiple definitions side by side? Make some changes to the workflow definition. The Problem Solver - Wednesday, October 10, 2012 Join Me at Guerrilla.NET in November in Los Angeles. Newly Updated with: Windows 8, VS 2012, MVC 4 and Entity Framework 5. You learn a myriad of patterns and best practices, and you get hands-on experience developing applications using Visual Studio 2012 and Windows 8. Learn to write code using new.NET class libraries like Entity Framework 5, MVC 4, and even the new Windows Runtime (WinRT). Course Topic Highlights: Windows 8 For The Developer. XAML-based Programming. We’ve just updated the outline with the most important current and upcoming technologies (see below). mkennedy. C# 5.0. Michael C. Kennedy's Weblog - Tuesday, September 25, 2012 | -
| The Best from DevelopMentor | MORE | - Converting a C# workflow into XAML
A interesting question that came up last week was how to convert workflows defined in C# to XAML. co worker of one of the attendees of the Essential Windows Workflow Foundation 4 course had been experiencing a lot of problems with the workflow designer and decided to create their workflows in C# instead of using the designer to generate XAML. Fortunately it isn’t hard to save workflow objects, however they have been authored, into their XAML representation using the XamlServices. And now I can continue enhancing the XAML version and run that instead. Enjoy! The Problem Solver - Saturday, August 28, 2010 - Loading XAML Workflows in WF4
RC 1 Most of the time I used compiled workflows in Windows Workflow Foundation 4. Fortunately we can also load a workflow from the XAML file itself and execute the resulting workflow activity. This is done using the ActivityXamlServices class that will let us load the XAML file and return an activity, to be exact it returns a DynamicActivity as a wrapper around your definition. Note: This blog post is written using the.NET framework 4.0 Its nice and easy, you design the workflow, compile it and at runtime there is a.NET type you use to create and run workflows. Enjoy! The Problem Solver - Sunday, March 7, 2010 - What's New in Windows Workflow Foundation in.NET 4.5 (part 1)
With WF4 I typically solve this by opening the workflow XAML in a text editor and searching the raw XML. During the last //build/ conference a number of new WF4, or should I now say WF4.5, features where announced. While the list of new features isn’t earth shattering long some of the most annoying shortcomings where addressed. Designer enhancements As a developer I spend a lot of time in the designer so any improvements there are going to make me happy. And I am very happy to see some of the new features. Auto surround with a Sequence. This seemingly small feature is a real time saver. The Problem Solver - Tuesday, September 27, 2011 - Matthijs Hoekstra over Visual Studio 2012 en ontwikkelen voor Windows 8
Ze zijn aanwezig op de Visual Studio 2012 launch bij Info Support in Veenendaal en hebben het over het ontwikkelen voor Windows 8 met behulp van Visual Studio 2012. Links: Blog: [link] Twitter: https://twitter.com/mahoekst XAML Spy: [link] Met dank aan onze sponsor RedGate. In deze podcast spreekt Maurice de Beijer met Matthijs Hoekstra. Podcast DotNed VS2012 Windows8 The Problem Solver - Monday, September 17, 2012 - Rehosting the Workflow Designer in WF4
Beta 2 With Windows Workflow Foundation 3 it was possible to rehost the workflow designer in your own application. With Windows Workflow Foundation 4 live has become much better on the rehosting front In fact it is possible to create the fully functional and useful workflow editor below in about 200 lines of code. And loading or saving a workflow is easy to, all it takes is a Load() and Save() function pointing to a XAML file. Note: This blog post is written using the.NET framework 4.0 Now that is more like it! new DesignerMetadata().Register(); Again nice and easy. Sweet. The Problem Solver - Wednesday, December 23, 2009 - WPF MVVM Helper Library (WPF + MVVM = testability)
When MVVM came to my notice I worked on trying to completely separate the XAML side so I'll focus on those classes here. Next, in each view (XAML) you set the DataContext property to your view model, the library has a MarkupExtension to do the work for you -. < Window x : Class ="TestMvvm.MainWindow". Everything is driven off ICommand - you can bind commands to the lifetime of the view (so you can detect activation, deactivation, loading, closing) through the LifetimeEvents attached behavior: < Window x : Class ="TestMvvm.MainWindow". that I tend to use a lot. - 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. You can try putting the focus shift into the user control but it turns out that it won't work there either - it's got to be assigned to the focus scope which is the window. but all is not lost! %>
| | |