初始化

This commit is contained in:
2025-11-26 11:50:15 +08:00
commit 5a5d01d176
46 changed files with 13580 additions and 0 deletions

172
frmFaceDevice.Designer.cs generated Normal file
View File

@@ -0,0 +1,172 @@
namespace WinFormTest
{
partial class frmFaceDevice
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmFaceDevice));
this.label1 = new System.Windows.Forms.Label();
this.txtSerialNo = new System.Windows.Forms.TextBox();
this.txtDevName = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.txtRoomNumber = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.cmbHotels = new System.Windows.Forms.ComboBox();
this.btnSave = new System.Windows.Forms.Button();
this.btnClose = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(23, 38);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(65, 12);
this.label1.TabIndex = 0;
this.label1.Text = "设备序列号";
//
// txtSerialNo
//
this.txtSerialNo.Location = new System.Drawing.Point(94, 35);
this.txtSerialNo.Name = "txtSerialNo";
this.txtSerialNo.ReadOnly = true;
this.txtSerialNo.Size = new System.Drawing.Size(285, 21);
this.txtSerialNo.TabIndex = 1;
//
// txtDevName
//
this.txtDevName.Location = new System.Drawing.Point(94, 73);
this.txtDevName.Name = "txtDevName";
this.txtDevName.ReadOnly = true;
this.txtDevName.Size = new System.Drawing.Size(285, 21);
this.txtDevName.TabIndex = 3;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(23, 73);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(53, 12);
this.label2.TabIndex = 2;
this.label2.Text = "设备名称";
//
// txtRoomNumber
//
this.txtRoomNumber.Location = new System.Drawing.Point(94, 142);
this.txtRoomNumber.Name = "txtRoomNumber";
this.txtRoomNumber.Size = new System.Drawing.Size(285, 21);
this.txtRoomNumber.TabIndex = 5;
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(23, 145);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(53, 12);
this.label3.TabIndex = 4;
this.label3.Text = "房 号";
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(23, 109);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(53, 12);
this.label4.TabIndex = 6;
this.label4.Text = "所属酒店";
//
// cmbHotels
//
this.cmbHotels.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbHotels.FormattingEnabled = true;
this.cmbHotels.Location = new System.Drawing.Point(94, 109);
this.cmbHotels.Name = "cmbHotels";
this.cmbHotels.Size = new System.Drawing.Size(285, 20);
this.cmbHotels.TabIndex = 7;
//
// btnSave
//
this.btnSave.Location = new System.Drawing.Point(115, 192);
this.btnSave.Name = "btnSave";
this.btnSave.Size = new System.Drawing.Size(75, 23);
this.btnSave.TabIndex = 8;
this.btnSave.Text = "保存";
this.btnSave.UseVisualStyleBackColor = true;
this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
//
// btnClose
//
this.btnClose.Location = new System.Drawing.Point(216, 192);
this.btnClose.Name = "btnClose";
this.btnClose.Size = new System.Drawing.Size(75, 23);
this.btnClose.TabIndex = 9;
this.btnClose.Text = "关闭";
this.btnClose.UseVisualStyleBackColor = true;
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
// frmFaceDevice
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(406, 244);
this.Controls.Add(this.btnClose);
this.Controls.Add(this.btnSave);
this.Controls.Add(this.cmbHotels);
this.Controls.Add(this.label4);
this.Controls.Add(this.txtRoomNumber);
this.Controls.Add(this.label3);
this.Controls.Add(this.txtDevName);
this.Controls.Add(this.label2);
this.Controls.Add(this.txtSerialNo);
this.Controls.Add(this.label1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.Name = "frmFaceDevice";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "人脸机绑定房号";
this.Load += new System.EventHandler(this.frmFaceDevice_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox txtSerialNo;
private System.Windows.Forms.TextBox txtDevName;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox txtRoomNumber;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.ComboBox cmbHotels;
private System.Windows.Forms.Button btnSave;
private System.Windows.Forms.Button btnClose;
}
}