添加项目文件。
This commit is contained in:
29
MetroGauges/Controls/BlockShaps/ShapDataContext.cs
Normal file
29
MetroGauges/Controls/BlockShaps/ShapDataContext.cs
Normal file
@@ -0,0 +1,29 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MetroGauges.Controls
|
||||
{
|
||||
/// <summary>
|
||||
/// 块图形数据存储
|
||||
/// </summary>
|
||||
public class ShapDataContext
|
||||
{
|
||||
public object OringLocation { get; set; }
|
||||
|
||||
public netDxf.Entities.Arc Arc { get; set; }
|
||||
|
||||
public double ShapScaleRate { get; set; }
|
||||
|
||||
public bool IsClosed { get; set; }
|
||||
|
||||
public bool IsDirection { get; set; }
|
||||
|
||||
public ShapDataContext()
|
||||
{
|
||||
ShapScaleRate = 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user