20 lines
506 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace gehGassi.Toolkit.Views.ContentButton
{
/// <summary>
/// Argument von <see cref="ContentButton"/> Events.
/// </summary>
public class ContentButtonEventArgs : EventArgs
{
/// <summary>
/// Position der Interaktion relativ zu <see cref="ContentButton"/>
/// </summary>
public Point InteractionPosition { get; init; }
}
}