using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace HotelPms.Share.Windows.Component { public class FocusInfo { private Control activeControl = null; private Dictionary grid = new Dictionary(); public Control ActiveControl { get { return activeControl; } set { activeControl = value; } } public Dictionary Grid { get { return grid; } set { grid = value; } } } }