mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-06 09:40:50 +08:00
142 lines
4.0 KiB
C#
142 lines
4.0 KiB
C#
//The MIT License(MIT)
|
|
|
|
//Copyright(c) 2016 Alberto Rodriguez & LiveCharts Contributors
|
|
|
|
//Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
//of this software and associated documentation files (the "Software"), to deal
|
|
//in the Software without restriction, including without limitation the rights
|
|
//to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
//copies of the Software, and to permit persons to whom the Software is
|
|
//furnished to do so, subject to the following conditions:
|
|
|
|
//The above copyright notice and this permission notice shall be included in all
|
|
//copies or substantial portions of the Software.
|
|
|
|
//THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
//IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
//FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
//AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
//LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
//OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
//SOFTWARE.
|
|
|
|
using System;
|
|
|
|
namespace LiveCharts.Dtos
|
|
{
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class CoreRectangle
|
|
{
|
|
private double _left;
|
|
private double _top;
|
|
private double _width;
|
|
private double _height;
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="CoreRectangle"/> class.
|
|
/// </summary>
|
|
public CoreRectangle()
|
|
{
|
|
|
|
}
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="CoreRectangle"/> class.
|
|
/// </summary>
|
|
/// <param name="left">The left.</param>
|
|
/// <param name="top">The top.</param>
|
|
/// <param name="width">The width.</param>
|
|
/// <param name="height">The height.</param>
|
|
public CoreRectangle(double left, double top, double width, double height) : this()
|
|
{
|
|
Left = left;
|
|
Top = top;
|
|
Width = width;
|
|
Height = height;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Occurs when [set top].
|
|
/// </summary>
|
|
public event Action<double> SetTop;
|
|
/// <summary>
|
|
/// Occurs when [set left].
|
|
/// </summary>
|
|
public event Action<double> SetLeft;
|
|
/// <summary>
|
|
/// Occurs when [set width].
|
|
/// </summary>
|
|
public event Action<double> SetWidth;
|
|
/// <summary>
|
|
/// Occurs when [set height].
|
|
/// </summary>
|
|
public event Action<double> SetHeight;
|
|
|
|
/// <summary>
|
|
/// Gets or sets the left.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The left.
|
|
/// </value>
|
|
public double Left
|
|
{
|
|
get { return _left; }
|
|
set
|
|
{
|
|
_left = value;
|
|
if (SetLeft != null) SetLeft.Invoke(value);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets the top.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The top.
|
|
/// </value>
|
|
public double Top
|
|
{
|
|
get { return _top; }
|
|
set
|
|
{
|
|
_top = value;
|
|
if (SetTop != null) SetTop.Invoke(value);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets the width.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The width.
|
|
/// </value>
|
|
public double Width
|
|
{
|
|
get { return _width; }
|
|
set
|
|
{
|
|
_width = value < 0 ? 0 : value;
|
|
if (SetWidth != null) SetWidth.Invoke(value);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets the height.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The height.
|
|
/// </value>
|
|
public double Height
|
|
{
|
|
get { return _height; }
|
|
set
|
|
{
|
|
_height = value < 0 ? 0 : value;
|
|
if (SetHeight != null) SetHeight.Invoke(value);
|
|
}
|
|
}
|
|
}
|
|
} |