Books
-
Recent Posts
Archives
Categories
- .NET Core (1)
- ActivityDesigner (5)
- AngularJs (7)
- Architecture Features (1)
- ASP.Net (24)
- Entity Framework (3)
- ASP.Net 4.5 (6)
- Azure (16)
- Book (6)
- C# (22)
- C# 4.0 (4)
- Cognitive Services (1)
- Contest (5)
- DevOps (1)
- EnvDTE (3)
- feature Builder (1)
- General (8)
- Google (3)
- HTML5 (20)
- IDE (3)
- IE (3)
- IIS (1)
- jQuery (3)
- LightSwitch (1)
- LINQ (2)
- Load Test (5)
- Lync Server 2010 (2)
- Microsoft (21)
- MVC (7)
- Node (2)
- Office (5)
- Open XML (1)
- performance Test (6)
- Pex and Moles (3)
- Site Review (2)
- SQL (6)
- TFS (18)
- Tools (6)
- UI (1)
- Uncategorized (25)
- Visual Studio (18)
- Visual Studio 2015 (12)
- Visual Studio 2010 (15)
- WCF (1)
- Visual Studio 2011 (4)
- Metro App (1)
- Visual Studio 2012 (14)
- Visual Studio 2013 (5)
- VSTS 2010 (12)
- LightSwitch (1)
- VSTS 2011 (3)
- WebMatrix (2)
- WF (9)
- WF4 (20)
- Windows (11)
- Windows 8 App (8)
- Windows Phone 7 (1)
- WPF (9)
Meta
Blog Stats
- 141,263 hits
Category Archives: ActivityDesigner
Workflow Foundation 4.0 – Dynamic Arguments
In workflow foundation 4.0, we can pass data from a Host application to workflow using arguments. We can add the InArguments to the workflow in two ways. Either the user needs to Manually create the required InArguments or we need … Continue reading
Activity Designer in Workflow Foundation 4.0
Visual Studio 2010 released with workflow foundation 4.0. Workflow Foundation 4.0 is introduced a significant amount of change from the previous versions of the technology. The change varies from the core of the workflow foundation, runtime and tools. Workflow foundation … Continue reading
Posted in ActivityDesigner, WF4
Leave a comment
WF4: ActivityDesigner – How to use WPF custom control in Activity Designer
1. Define the WPF custom control. 2. Refer the Current namespace in activityDesigner 3. Refer the Custom Control from Xaml <sap:ActivityDesigner x:Class=”WF4ActivityDesignerLibrary.ActivityDesigner.CustomControlDesigner” xmlns=”http://schemas.microsoft.com/winfx/2006/xaml/presentation” xmlns:x=”http://schemas.microsoft.com/winfx/2006/xaml” xmlns:sap=”clr-namespace:System.Activities.Presentation;assembly=System.Activities.Presentation” xmlns:sapv=”clr-namespace:System.Activities.Presentation.View;assembly=System.Activities.Presentation” xmlns:local =”clr-namespace:WF4ActivityDesignerLibrary” mc:Ignorable=”d” xmlns:d=”http://schemas.microsoft.com/expression/blend/2008″ xmlns:mc=”http://schemas.openxmlformats.org/markup-compatibility/2006″ d:DesignHeight=”67″ d:DesignWidth=”204″> Note: you can fire the events associated … Continue reading
Posted in ActivityDesigner, WF, WF4
10 Comments
WF4: ActivityDesigner – Container Activity designer
For designing a container designer like one where you can drag another activity, use the following code
Posted in ActivityDesigner, WF, WF4
Leave a comment
WF4: Activity Designer – Icon
Change the ActivityDesigner Icon using
Posted in ActivityDesigner, WF, WF4
Leave a comment