mirror of
https://github.com/8damon/Blackbird-Platform
synced 2026-06-21 13:41:12 +00:00
18 lines
316 B
C#
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;
|
|
}
|
|
}
|
|
}
|
|
|
|
|