File: System\Activities\Core\Presentation\FlowSwitchLinkCasePropertyEditor.cs
Project: ndp\cdf\src\NetFx40\Tools\System.Activities.Core.Presentation\System.Activities.Core.Presentation.csproj (System.Activities.Core.Presentation)
//----------------------------------------------------------------
// Copyright (c) Microsoft Corporation.  All rights reserved.
//----------------------------------------------------------------
 
namespace System.Activities.Presentation
{
    using System.Windows;
    using System.Activities.Presentation.PropertyEditing;
    using System.Activities.Presentation.Converters;
    using System.Activities.Presentation.View;
    using System.Activities.Core.Presentation.Themes;
 
    sealed class FlowSwitchLinkCasePropertyEditor : PropertyValueEditor
    {
        public FlowSwitchLinkCasePropertyEditor()
        {
            this.InlineEditorTemplate = (DataTemplate)EditorCategoryTemplateDictionary.Instance.GetCategoryTemplate("FlowSwitchLinkCase_InlineEditorTemplate");
        }
    }
}