using MetroGauges.Controls;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
namespace MetroGauges
{
public class HighlighEvent : EventArgs
{
public Point Location { get; set; }
public BlockData Block { get; set; }
}
///
///
///
public class NodeCheckInputArgs : EventArgs
{
///
///
///
public bool Cancel { get; set; }
///
///
///
public string NewText { get; set; }
///
///
///
public string OldText { get; set; }
}
}