added samples
[windows-sources.git] / sdk / samples / WFSamples / Technologies / DesignerHosting / CS / WorkflowDesignerReHosting / Program.cs
blobc13541cf365631f60b7592c287f42089e8d0a9c2
1 //---------------------------------------------------------------------
2 // This file is part of the Windows Workflow Foundation SDK Code Samples.
3 //
4 // Copyright (C) Microsoft Corporation. All rights reserved.
5 //
6 //This source code is intended only as a supplement to Microsoft
7 //Development Tools and/or on-line documentation. See these other
8 //materials for detailed information regarding Microsoft code samples.
9 //
10 //THIS CODE AND INFORMATION ARE PROVIDED AS IS WITHOUT WARRANTY OF ANY
11 //KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
12 //IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
13 //PARTICULAR PURPOSE.
14 //---------------------------------------------------------------------
16 using System;
17 using System.Collections.Generic;
18 using System.Windows.Forms;
20 namespace Microsoft.Samples.Workflow.WorkflowDesignerRehosting
22 static class Program
24 /// <summary>
25 /// The main entry point for the application.
26 /// </summary>
27 [STAThread]
28 static void Main()
30 Application.EnableVisualStyles();
31 Application.Run(new DesignerShell());