ee406e06936289fd4cf6dd470ae2bf5365481ece
[mono.git] / mcs / class / referencesource / System.Activities.Presentation / System.Activities.Presentation / System / Activities / Presentation / Base / Core / Internal / PropertyEditing / Editors / BoolViewEditor.cs
1 //----------------------------------------------------------------
2 // Copyright (c) Microsoft Corporation.  All rights reserved.
3 //----------------------------------------------------------------
4 namespace System.Activities.Presentation.Internal.PropertyEditing.Editors 
5 {
6     using System.Windows;
7     using System.Activities.Presentation.PropertyEditing;
8     using System.Activities.Presentation.Internal.PropertyEditing.Resources;
9
10     // <summary>
11     // Simple PropertyValueEditor that uses the BoolViewTemplate (see StylesCore.Editors.xaml)
12     // </summary>
13     internal class BoolViewEditor : PropertyValueEditor 
14     {
15         public BoolViewEditor()
16             :
17             base(PropertyInspectorResources.GetResources()["BoolViewTemplate"] as DataTemplate) { }
18     }
19 }