File: System.Activities.Presentation\System\Activities\Presentation\FreeFormEditing\LocationChangedEventArgs.cs
Project: ndp\cdf\src\NetFx40\Tools\System.Activities.Presentation.csproj (System.Activities.Presentation)
//------------------------------------------------------------
// Copyright (c) Microsoft Corporation.  All rights reserved.
//------------------------------------------------------------
 
namespace System.Activities.Presentation.FreeFormEditing
{
    using System;
    using System.Windows;
 
    class LocationChangedEventArgs : EventArgs
    {
        Point newLocation;
               
        public LocationChangedEventArgs(Point newLocation)
        {
            this.newLocation = newLocation;
        }
 
        public Point NewLocation
        {
            get
            {
                return this.newLocation;
            }
        }
    }
 
}