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.SourceFactory/PostgreSqlDemo.Designer.cs | 233 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 233 insertions(+), 0 deletions(-)
diff --git a/HotelPms.SourceFactory/PostgreSqlDemo.Designer.cs b/HotelPms.SourceFactory/PostgreSqlDemo.Designer.cs
new file mode 100644
index 0000000..7fd2725
--- /dev/null
+++ b/HotelPms.SourceFactory/PostgreSqlDemo.Designer.cs
@@ -0,0 +1,233 @@
+
+namespace HotelPms.SourceFactory
+{
+ partial class PostgreSqlDemo
+ {
+ /// <summary>
+ /// Required designer variable.
+ /// </summary>
+ private System.ComponentModel.IContainer components = null;
+
+ /// <summary>
+ /// Clean up any resources being used.
+ /// </summary>
+ /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ /// <summary>
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ /// </summary>
+ private void InitializeComponent()
+ {
+ this.label1 = new System.Windows.Forms.Label();
+ this.txtHost = new System.Windows.Forms.TextBox();
+ this.txtUser = new System.Windows.Forms.TextBox();
+ this.label2 = new System.Windows.Forms.Label();
+ this.panel1 = new System.Windows.Forms.Panel();
+ this.button1 = new System.Windows.Forms.Button();
+ this.txtDB = new System.Windows.Forms.TextBox();
+ this.label4 = new System.Windows.Forms.Label();
+ this.txtPassword = new System.Windows.Forms.TextBox();
+ this.label3 = new System.Windows.Forms.Label();
+ this.panel2 = new System.Windows.Forms.Panel();
+ this.dataGridView1 = new System.Windows.Forms.DataGridView();
+ this.txtSql = new System.Windows.Forms.TextBox();
+ this.button2 = new System.Windows.Forms.Button();
+ this.label5 = new System.Windows.Forms.Label();
+ this.panel1.SuspendLayout();
+ this.panel2.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
+ this.SuspendLayout();
+ //
+ // label1
+ //
+ this.label1.AutoSize = true;
+ this.label1.Location = new System.Drawing.Point(29, 22);
+ this.label1.Name = "label1";
+ this.label1.Size = new System.Drawing.Size(30, 15);
+ this.label1.TabIndex = 0;
+ this.label1.Text = "host";
+ //
+ // txtHost
+ //
+ this.txtHost.Location = new System.Drawing.Point(65, 18);
+ this.txtHost.Name = "txtHost";
+ this.txtHost.Size = new System.Drawing.Size(83, 23);
+ this.txtHost.TabIndex = 1;
+ this.txtHost.Text = "127.0.0.1";
+ //
+ // txtUser
+ //
+ this.txtUser.Location = new System.Drawing.Point(189, 18);
+ this.txtUser.Name = "txtUser";
+ this.txtUser.Size = new System.Drawing.Size(76, 23);
+ this.txtUser.TabIndex = 3;
+ this.txtUser.Text = "postgres";
+ //
+ // label2
+ //
+ this.label2.AutoSize = true;
+ this.label2.Location = new System.Drawing.Point(154, 22);
+ this.label2.Name = "label2";
+ this.label2.Size = new System.Drawing.Size(29, 15);
+ this.label2.TabIndex = 2;
+ this.label2.Text = "user";
+ //
+ // panel1
+ //
+ this.panel1.Controls.Add(this.label5);
+ this.panel1.Controls.Add(this.button2);
+ this.panel1.Controls.Add(this.txtSql);
+ this.panel1.Controls.Add(this.button1);
+ this.panel1.Controls.Add(this.txtDB);
+ this.panel1.Controls.Add(this.label4);
+ this.panel1.Controls.Add(this.txtPassword);
+ this.panel1.Controls.Add(this.label3);
+ this.panel1.Controls.Add(this.label1);
+ this.panel1.Controls.Add(this.txtUser);
+ this.panel1.Controls.Add(this.txtHost);
+ this.panel1.Controls.Add(this.label2);
+ this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
+ this.panel1.Location = new System.Drawing.Point(0, 0);
+ this.panel1.Name = "panel1";
+ this.panel1.Size = new System.Drawing.Size(800, 214);
+ this.panel1.TabIndex = 4;
+ //
+ // button1
+ //
+ this.button1.Location = new System.Drawing.Point(583, 11);
+ this.button1.Name = "button1";
+ this.button1.Size = new System.Drawing.Size(121, 35);
+ this.button1.TabIndex = 8;
+ this.button1.Text = "DB作成";
+ this.button1.UseVisualStyleBackColor = true;
+ this.button1.Click += new System.EventHandler(this.button1_Click);
+ //
+ // txtDB
+ //
+ this.txtDB.Location = new System.Drawing.Point(482, 18);
+ this.txtDB.Name = "txtDB";
+ this.txtDB.Size = new System.Drawing.Size(76, 23);
+ this.txtDB.TabIndex = 7;
+ this.txtDB.Text = "HotelPms";
+ //
+ // label4
+ //
+ this.label4.AutoSize = true;
+ this.label4.Location = new System.Drawing.Point(441, 22);
+ this.label4.Name = "label4";
+ this.label4.Size = new System.Drawing.Size(22, 15);
+ this.label4.TabIndex = 6;
+ this.label4.Text = "DB";
+ //
+ // txtPassword
+ //
+ this.txtPassword.Location = new System.Drawing.Point(345, 18);
+ this.txtPassword.Name = "txtPassword";
+ this.txtPassword.Size = new System.Drawing.Size(76, 23);
+ this.txtPassword.TabIndex = 5;
+ this.txtPassword.Text = "oatcti";
+ //
+ // label3
+ //
+ this.label3.AutoSize = true;
+ this.label3.Location = new System.Drawing.Point(282, 22);
+ this.label3.Name = "label3";
+ this.label3.Size = new System.Drawing.Size(57, 15);
+ this.label3.TabIndex = 4;
+ this.label3.Text = "password";
+ //
+ // panel2
+ //
+ this.panel2.Controls.Add(this.dataGridView1);
+ this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.panel2.Location = new System.Drawing.Point(0, 214);
+ this.panel2.Name = "panel2";
+ this.panel2.Size = new System.Drawing.Size(800, 283);
+ this.panel2.TabIndex = 5;
+ //
+ // dataGridView1
+ //
+ this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+ this.dataGridView1.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.dataGridView1.Location = new System.Drawing.Point(0, 0);
+ this.dataGridView1.Name = "dataGridView1";
+ this.dataGridView1.RowTemplate.Height = 25;
+ this.dataGridView1.Size = new System.Drawing.Size(800, 283);
+ this.dataGridView1.TabIndex = 0;
+ //
+ // txtSql
+ //
+ this.txtSql.Dock = System.Windows.Forms.DockStyle.Bottom;
+ this.txtSql.Location = new System.Drawing.Point(0, 119);
+ this.txtSql.Multiline = true;
+ this.txtSql.Name = "txtSql";
+ this.txtSql.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
+ this.txtSql.Size = new System.Drawing.Size(800, 95);
+ this.txtSql.TabIndex = 9;
+ //
+ // button2
+ //
+ this.button2.Location = new System.Drawing.Point(91, 78);
+ this.button2.Name = "button2";
+ this.button2.Size = new System.Drawing.Size(121, 35);
+ this.button2.TabIndex = 10;
+ this.button2.Text = "GetDataTable";
+ this.button2.UseVisualStyleBackColor = true;
+ this.button2.Click += new System.EventHandler(this.button2_Click);
+ //
+ // label5
+ //
+ this.label5.AutoSize = true;
+ this.label5.Location = new System.Drawing.Point(12, 98);
+ this.label5.Name = "label5";
+ this.label5.Size = new System.Drawing.Size(23, 15);
+ this.label5.TabIndex = 11;
+ this.label5.Text = "Sql";
+ //
+ // PostgreSqlDemo
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.ClientSize = new System.Drawing.Size(800, 497);
+ this.Controls.Add(this.panel2);
+ this.Controls.Add(this.panel1);
+ this.Name = "PostgreSqlDemo";
+ this.Text = "PostgreSqlDemo";
+ this.panel1.ResumeLayout(false);
+ this.panel1.PerformLayout();
+ this.panel2.ResumeLayout(false);
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
+ this.ResumeLayout(false);
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.Label label1;
+ private System.Windows.Forms.TextBox txtHost;
+ private System.Windows.Forms.TextBox txtUser;
+ private System.Windows.Forms.Label label2;
+ private System.Windows.Forms.Panel panel1;
+ private System.Windows.Forms.Button button1;
+ private System.Windows.Forms.TextBox txtDB;
+ private System.Windows.Forms.Label label4;
+ private System.Windows.Forms.TextBox txtPassword;
+ private System.Windows.Forms.Label label3;
+ private System.Windows.Forms.Panel panel2;
+ private System.Windows.Forms.DataGridView dataGridView1;
+ private System.Windows.Forms.Label label5;
+ private System.Windows.Forms.Button button2;
+ private System.Windows.Forms.TextBox txtSql;
+ }
+}
\ No newline at end of file
--
Gitblit v1.10.0