Files
8damon-Blackbird-Platform/Client/analysis/Models/PaneHeaderDragEventArgs.cs
T
2026-04-03 14:23:15 +10:00

18 lines
316 B
C#

using System;
using System.Windows;
namespace BlackbirdInterface
{
public sealed class PaneHeaderDragEventArgs : EventArgs
{
public Point ScreenPosition { get; }
public PaneHeaderDragEventArgs(Point screenPosition)
{
ScreenPosition = screenPosition;
}
}
}