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.WinForm/View/UseInput/Detail.cs |   74 +++++++++++++++++++++++++++++++++++++
 1 files changed, 74 insertions(+), 0 deletions(-)

diff --git a/HotelPms.WinForm/View/UseInput/Detail.cs b/HotelPms.WinForm/View/UseInput/Detail.cs
new file mode 100644
index 0000000..84c4abc
--- /dev/null
+++ b/HotelPms.WinForm/View/UseInput/Detail.cs
@@ -0,0 +1,74 @@
+using HotelPms.Data.UseInfo;
+using HotelPms.Share.Data;
+using HotelPms.Share.Windows.Util;
+using HotelPms.WinForm.Common.Util;
+
+namespace HotelPms.WinForm.View.UseInput
+{
+    /// <summary>
+    /// ◇機能名
+    ///  予約・チエックイン画面
+    /// ◇履歴
+    ///   2022/04/05 小木 勝龍  新規作成	
+    /// </summary>
+    public partial class Detail : FormBase
+    {
+        #region  ★★★★★ Declartions ★★★★★        
+
+        private DataAccess dataAccess;
+
+        #endregion
+
+        #region  ★★★★★ Property ★★★★★
+
+        /// <summary>
+        /// 利用データ
+        /// </summary>
+        public Use? UseData { get; set; }
+
+        #endregion
+
+        #region  ★★★★★ Class Event ★★★★★
+
+        public Detail()
+        {
+            InitializeComponent();
+        }
+
+        private void Detail_Load(object sender, EventArgs e)
+        {
+            dataAccess = EnvironmentSetting.Default.CreateDBAccess();
+            UseData = Use.Get(0, dataAccess);
+            txtID.Text = UseData.ID.ToString();
+            txtGroupName.Text = UseData.GroupName;
+            txtGroupKana.Text = UseData.GroupKana;
+        }
+
+        private void Detail_FormClosed(object sender, FormClosedEventArgs e)
+        {
+            if(dataAccess != null) { dataAccess.Dispose(); }
+        }
+
+        private void Detail_FormClosing(object sender, FormClosingEventArgs e)
+        {
+
+        }
+
+
+        #endregion
+
+        #region  ★★★★★ Control Event ★★★★★
+        #endregion
+
+        #region  ★★★★★ Private Function ★★★★★
+        #endregion
+
+        #region  ★★★★★ Public  Function ★★★★★
+        #endregion
+
+        private void button1_Click(object sender, EventArgs e)
+        {
+            panelEx1.Expan = !panelEx1.Expan;
+        }
+    }
+}

--
Gitblit v1.10.0