mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-03-30 10:19:51 +08:00
27 lines
556 B
C#
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; }
|
|
}
|
|
|