Files
ENIG/HMI/SubProject/AGVControl/Models/ToolBarItem.cs
ChiKyun Kim 58ca67150d 파일정리
2026-01-29 14:03:17 +09:00

34 lines
680 B
C#

using System.Drawing;
using System.Collections.Generic;
using System.Linq;
namespace AGVControl.Models
{
public class ToolBarItem
{
private bool _ishovering = false;
public int Idx { get; set; }
public Rectangle Bounds { get; set; }
public bool isHovering
{
get { return _ishovering; }
set
{
Dirty = _ishovering != value;
_ishovering = value;
}
}
public string Title { get; set; }
public bool Dirty { get; private set; }
public ToolBarItem()
{
Bounds = Rectangle.Empty;
}
}
}