CK.WindowManager.Model.WindowElementLocationEventArgs.WindowElementLocationEventArgs C# (CSharp) Method

WindowElementLocationEventArgs() public method

public WindowElementLocationEventArgs ( IWindowElement window, double deltaTop, double deltaLeft ) : System
window IWindowElement
deltaTop double
deltaLeft double
return System
        public WindowElementLocationEventArgs( IWindowElement window, double deltaTop, double deltaLeft )
            : base(window)
        {
            DeltaTop = deltaTop;
            DeltaLeft = deltaLeft;
        }
WindowElementLocationEventArgs