You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
687 B
C#
28 lines
687 B
C#
using LiveChartsCore.Defaults;
|
|
using LiveChartsCore.SkiaSharpView.Painting;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Aucma.Core.Palletiz.Common
|
|
{
|
|
/// <summary>
|
|
/// 型号统计
|
|
/// </summary>
|
|
public class PilotInfo : ObservableValue
|
|
{
|
|
public PilotInfo(string name, int value, SolidColorPaint paint)
|
|
{
|
|
Name = name;
|
|
Paint = paint;
|
|
// the ObservableValue.Value property is used by the chart
|
|
Value = value;
|
|
}
|
|
|
|
public string Name { get; set; }
|
|
public SolidColorPaint Paint { get; set; }
|
|
}
|
|
}
|