[corlib] Update ValueTuple implementation
[mono.git] / mcs / class / referencesource / System.Activities.Presentation / System.Activities.Presentation / System / Activities / Presentation / Annotations / IDockedAnnotation.cs
1 //---------------------------------------------------------------------------
2 // <copyright file="IDockedAnnotation.cs" company="Microsoft">
3 //     Copyright (c) Microsoft Corporation.  All rights reserved.
4 // </copyright>
5 //---------------------------------------------------------------------------
6
7 namespace System.Activities.Presentation.Annotations
8 {
9     using System.Windows;
10
11     internal interface IDockedAnnotation
12     {
13         event Action UndockButtonClicked;
14
15         bool IsReadOnly
16         {
17             set;
18         }
19
20         Visibility Visibility
21         {
22             set;
23         }
24
25         void FocusOnContent();
26     }
27 }