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/Tool/MstList.designer.cs | 171 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 171 insertions(+), 0 deletions(-)
diff --git a/HotelPms.Share.Windows/Tool/MstList.designer.cs b/HotelPms.Share.Windows/Tool/MstList.designer.cs
new file mode 100644
index 0000000..24cc602
--- /dev/null
+++ b/HotelPms.Share.Windows/Tool/MstList.designer.cs
@@ -0,0 +1,171 @@
+namespace HotelPms.Share.Windows.Tool
+{
+ partial class MstList
+ {
+ /// <summary>
+ /// 必要なデザイナ変数です。
+ /// </summary>
+ private System.ComponentModel.IContainer components = null;
+
+ /// <summary>
+ /// 使用中のリソースをすべてクリーンアップします。
+ /// </summary>
+ /// <param name="disposing">マネージ リソースが破棄される場合 true、破棄されない場合は false です。</param>
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows フォーム デザイナで生成されたコード
+
+ /// <summary>
+ /// デザイナ サポートに必要なメソッドです。このメソッドの内容を
+ /// コード エディタで変更しないでください。
+ /// </summary>
+ private void InitializeComponent()
+ {
+ System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
+ this.panel1 = new System.Windows.Forms.Panel();
+ this.DataGridView1 = new System.Windows.Forms.DataGridView();
+ this.panel2 = new System.Windows.Forms.Panel();
+ this.txtSearch = new System.Windows.Forms.TextBox();
+ this.btnClose = new System.Windows.Forms.Button();
+ this.label1 = new System.Windows.Forms.Label();
+ this.panel1.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.DataGridView1)).BeginInit();
+ this.panel2.SuspendLayout();
+ this.SuspendLayout();
+ //
+ // panel1
+ //
+ this.panel1.AutoSize = true;
+ this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.panel1.Controls.Add(this.DataGridView1);
+ this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.panel1.Location = new System.Drawing.Point(0, 0);
+ this.panel1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
+ this.panel1.Name = "panel1";
+ this.panel1.Size = new System.Drawing.Size(341, 300);
+ this.panel1.TabIndex = 4;
+ //
+ // DataGridView1
+ //
+ this.DataGridView1.AllowUserToAddRows = false;
+ this.DataGridView1.AllowUserToDeleteRows = false;
+ this.DataGridView1.AllowUserToResizeColumns = false;
+ this.DataGridView1.AllowUserToResizeRows = false;
+ dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
+ this.DataGridView1.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
+ this.DataGridView1.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.DisplayedCells;
+ this.DataGridView1.BorderStyle = System.Windows.Forms.BorderStyle.None;
+ this.DataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
+ this.DataGridView1.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.DataGridView1.Location = new System.Drawing.Point(0, 0);
+ this.DataGridView1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
+ this.DataGridView1.MultiSelect = false;
+ this.DataGridView1.Name = "DataGridView1";
+ this.DataGridView1.ReadOnly = true;
+ this.DataGridView1.RowHeadersVisible = false;
+ this.DataGridView1.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.AutoSizeToAllHeaders;
+ this.DataGridView1.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
+ this.DataGridView1.Size = new System.Drawing.Size(339, 298);
+ this.DataGridView1.TabIndex = 1;
+ this.DataGridView1.CellMouseDoubleClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.DataGridView1_CellMouseDoubleClick);
+ this.DataGridView1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.DataGridView1_KeyDown);
+ //
+ // panel2
+ //
+ this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.panel2.Controls.Add(this.txtSearch);
+ this.panel2.Controls.Add(this.btnClose);
+ this.panel2.Controls.Add(this.label1);
+ this.panel2.Dock = System.Windows.Forms.DockStyle.Bottom;
+ this.panel2.Location = new System.Drawing.Point(0, 300);
+ this.panel2.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
+ this.panel2.Name = "panel2";
+ this.panel2.Size = new System.Drawing.Size(341, 32);
+ this.panel2.TabIndex = 5;
+ //
+ // txtSearch
+ //
+ this.txtSearch.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.txtSearch.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.txtSearch.Font = new System.Drawing.Font("MS UI Gothic", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
+ this.txtSearch.Location = new System.Drawing.Point(85, 0);
+ this.txtSearch.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
+ this.txtSearch.MaxLength = 10;
+ this.txtSearch.Name = "txtSearch";
+ this.txtSearch.Size = new System.Drawing.Size(172, 23);
+ this.txtSearch.TabIndex = 2;
+ this.txtSearch.TextChanged += new System.EventHandler(this.txtSearch_TextChanged);
+ this.txtSearch.Enter += new System.EventHandler(this.txtSearch_Enter);
+ this.txtSearch.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtSearch_KeyDown);
+ this.txtSearch.Leave += new System.EventHandler(this.txtSearch_Leave);
+ //
+ // btnClose
+ //
+ this.btnClose.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(236)))), ((int)(((byte)(233)))), ((int)(((byte)(216)))));
+ this.btnClose.Dock = System.Windows.Forms.DockStyle.Right;
+ this.btnClose.Font = new System.Drawing.Font("MS UI Gothic", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
+ this.btnClose.ForeColor = System.Drawing.Color.Black;
+ this.btnClose.Location = new System.Drawing.Point(257, 0);
+ this.btnClose.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
+ this.btnClose.Name = "btnClose";
+ this.btnClose.Size = new System.Drawing.Size(82, 30);
+ this.btnClose.TabIndex = 3;
+ this.btnClose.Text = "閉じる";
+ this.btnClose.UseVisualStyleBackColor = false;
+ this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
+ //
+ // label1
+ //
+ this.label1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(236)))), ((int)(((byte)(233)))), ((int)(((byte)(216)))));
+ this.label1.Dock = System.Windows.Forms.DockStyle.Left;
+ this.label1.Font = new System.Drawing.Font("MS UI Gothic", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
+ this.label1.ImageAlign = System.Drawing.ContentAlignment.TopLeft;
+ this.label1.Location = new System.Drawing.Point(0, 0);
+ this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label1.Name = "label1";
+ this.label1.Size = new System.Drawing.Size(85, 30);
+ this.label1.TabIndex = 31;
+ this.label1.Text = "検索文字";
+ this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
+ //
+ // MstList
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.AutoSize = true;
+ this.BackColor = System.Drawing.Color.White;
+ this.CausesValidation = false;
+ this.ClientSize = new System.Drawing.Size(341, 332);
+ this.Controls.Add(this.panel1);
+ this.Controls.Add(this.panel2);
+ this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
+ this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
+ this.Name = "MstList";
+ this.Text = "MstListForm";
+ this.Load += new System.EventHandler(this.MstList_Load);
+ this.panel1.ResumeLayout(false);
+ ((System.ComponentModel.ISupportInitialize)(this.DataGridView1)).EndInit();
+ this.panel2.ResumeLayout(false);
+ this.panel2.PerformLayout();
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.Panel panel1;
+ private System.Windows.Forms.DataGridView DataGridView1;
+ private System.Windows.Forms.Panel panel2;
+ private System.Windows.Forms.Button btnClose;
+ private System.Windows.Forms.TextBox txtSearch;
+ private System.Windows.Forms.Label label1;
+ }
+}
\ No newline at end of file
--
Gitblit v1.10.0