|
|
@ -13,15 +13,15 @@ namespace Avalonia.Controls |
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// Initializes a new instance of the <see cref="PointEventArgs"/> class.
|
|
|
/// Initializes a new instance of the <see cref="PointEventArgs"/> class.
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
/// <param name="data">The <see cref="Point"/> data.</param>
|
|
|
/// <param name="point">The <see cref="Point"/> data.</param>
|
|
|
public PointEventArgs(Point data) |
|
|
public PointEventArgs(Point point) |
|
|
{ |
|
|
{ |
|
|
Data = data; |
|
|
Point = point; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// Gets the <see cref="Point"/> data.
|
|
|
/// Gets the <see cref="Point"/> data.
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
public Point Data { get; } |
|
|
public Point Point { get; } |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|