[reflection] Coop handles icalls in System.Reflection and System.RuntimeTypeHandle...
[mono.git] / mcs / class / referencesource / System.Activities.Presentation / System.Activities.Presentation / System / Activities / Presentation / Base / Core / Internal / PropertyEditing / FromExpression / Framework / PropertyInspector / CategoryContainerCommands.cs
1
2
3 // -------------------------------------------------------------------
4 // Copyright (c) Microsoft Corporation. All Rights Reserved.
5 // -------------------------------------------------------------------
6 //From \\authoring\Sparkle\Source\1.0.1083.0\Common\Source\Framework\Properties
7 namespace System.Activities.Presentation.Internal.PropertyEditing.FromExpression.Framework.PropertyInspector
8 {
9     using System;
10     using System.Windows;
11     using System.Windows.Input;
12
13
14     // <summary>
15     // Standard commands and command implementations used by PropertyContainer templates
16     // and implemented by property editing hosts
17     // </summary>
18     internal static class CategoryContainerCommands
19     {
20         private static readonly RoutedCommand togglePinAdvancedProperties = new RoutedCommand("TogglePinAdvancedProperties", typeof(CategoryContainerCommands));
21         private static readonly RoutedCommand updateCategoryExpansionState = new RoutedCommand("UpdateCategoryExpansionState", typeof(CategoryContainerCommands));
22
23         // <summary>
24         // standard command to category edit host to togglePinAdvancedProperties
25         // </summary>
26         public static RoutedCommand TogglePinAdvancedProperties
27         {
28             get { return CategoryContainerCommands.togglePinAdvancedProperties; }
29         }
30
31         // <summary>
32         // standard command to property edit host to updateCategoryExpansionState
33         // </summary>
34         public static RoutedCommand UpdateCategoryExpansionState
35         {
36             get { return CategoryContainerCommands.updateCategoryExpansionState; }
37         }
38
39     }
40 }