ba5a798f23c5f2c713a9dbe50cf2115784a90329
[mono.git] / mcs / class / referencesource / System.Activities.Presentation / System.Activities.Core.Presentation / System / Activities / Core / Presentation / LocationChangedEventArgs.cs
1 //------------------------------------------------------------
2 // Copyright (c) Microsoft Corporation.  All rights reserved.
3 //------------------------------------------------------------
4
5 namespace System.Activities.Core.Presentation
6 {
7     using System.Windows;
8     using System.Runtime;
9
10     [Fx.Tag.XamlVisible(false)]
11     public class LocationChangedEventArgs : EventArgs
12     {
13         Point newLocation;
14                
15         public LocationChangedEventArgs(Point newLocation)
16         {
17             this.newLocation = newLocation;
18         }
19
20         public Point NewLocation
21         {
22             get
23             {
24                 return this.newLocation;
25             }
26         }
27     }
28
29 }