SafeDispatch/Safedispatch_4_0/maptab/UIClasses/ColorUnitTreeNode.cs

28 lines
543 B
C#
Raw Normal View History

2024-02-22 16:43:59 +00:00
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Telerik.WinControls.UI;
namespace Dispatcher.maptab.UIClasses
{
public class ColorUnitTreeNode : RadTreeNode
{
private Color _color;
public Color Color
{
get { return this._color; }
set { this._color = value; }
}
public ColorUnitTreeNode(string name) : base(name)
{
// nothing here
}
}
}