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<DataGridViewEx, GridSelInfo> grid = new Dictionary<DataGridViewEx, GridSelInfo>();
|
|
public Control ActiveControl
|
{
|
get { return activeControl; }
|
set { activeControl = value; }
|
}
|
|
public Dictionary<DataGridViewEx, GridSelInfo> Grid
|
{
|
get { return grid; }
|
set { grid = value; }
|
}
|
}
|
}
|