From 1a1c8e71fcd14858f595029f089b2d4a00202b32 Mon Sep 17 00:00:00 2001
From: ogi <Administrator@S-OGI-PC>
Date: Fri, 05 Dec 2025 09:24:16 +0900
Subject: [PATCH] プロジェクトファイルを追加。

---
 HotelPms.Share.Windows/Component/FocusInfo.cs |   27 +++++++++++++++++++++++++++
 1 files changed, 27 insertions(+), 0 deletions(-)

diff --git a/HotelPms.Share.Windows/Component/FocusInfo.cs b/HotelPms.Share.Windows/Component/FocusInfo.cs
new file mode 100644
index 0000000..6a29dee
--- /dev/null
+++ b/HotelPms.Share.Windows/Component/FocusInfo.cs
@@ -0,0 +1,27 @@
+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; }
+        }
+    }
+}

--
Gitblit v1.10.0