Files
better-genshin-impact/BetterGenshinImpact/View/Controls/Overlay/OverlayLayoutCommittedEventArgs.cs
2026-01-17 16:07:34 +08:00

27 lines
556 B
C#

using System;
namespace BetterGenshinImpact.View.Controls.Overlay;
public sealed class OverlayLayoutCommittedEventArgs : EventArgs
{
public OverlayLayoutCommittedEventArgs(string layoutKey, double left, double top, double width, double height)
{
LayoutKey = layoutKey;
Left = left;
Top = top;
Width = width;
Height = height;
}
public string LayoutKey { get; }
public double Left { get; }
public double Top { get; }
public double Width { get; }
public double Height { get; }
}