144 lines
6.2 KiB
C#
144 lines
6.2 KiB
C#
|
|
namespace WinFormTest
|
|||
|
|
{
|
|||
|
|
partial class frmFace
|
|||
|
|
{
|
|||
|
|
/// <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(frmFace));
|
|||
|
|
this.grdData = new System.Windows.Forms.DataGridView();
|
|||
|
|
this.btnBing = new System.Windows.Forms.Button();
|
|||
|
|
this.btnClose = new System.Windows.Forms.Button();
|
|||
|
|
this.btnRefresh = new System.Windows.Forms.Button();
|
|||
|
|
this.cmbHotelCode = new System.Windows.Forms.ComboBox();
|
|||
|
|
this.label1 = new System.Windows.Forms.Label();
|
|||
|
|
this.btnCleanBing = new System.Windows.Forms.Button();
|
|||
|
|
((System.ComponentModel.ISupportInitialize)(this.grdData)).BeginInit();
|
|||
|
|
this.SuspendLayout();
|
|||
|
|
//
|
|||
|
|
// grdData
|
|||
|
|
//
|
|||
|
|
this.grdData.AllowUserToAddRows = false;
|
|||
|
|
this.grdData.AllowUserToDeleteRows = false;
|
|||
|
|
this.grdData.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|||
|
|
| System.Windows.Forms.AnchorStyles.Left)
|
|||
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|||
|
|
this.grdData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|||
|
|
this.grdData.Location = new System.Drawing.Point(12, 42);
|
|||
|
|
this.grdData.Name = "grdData";
|
|||
|
|
this.grdData.ReadOnly = true;
|
|||
|
|
this.grdData.RowTemplate.Height = 23;
|
|||
|
|
this.grdData.Size = new System.Drawing.Size(831, 568);
|
|||
|
|
this.grdData.TabIndex = 2;
|
|||
|
|
//
|
|||
|
|
// btnBing
|
|||
|
|
//
|
|||
|
|
this.btnBing.Location = new System.Drawing.Point(461, 11);
|
|||
|
|
this.btnBing.Name = "btnBing";
|
|||
|
|
this.btnBing.Size = new System.Drawing.Size(75, 23);
|
|||
|
|
this.btnBing.TabIndex = 3;
|
|||
|
|
this.btnBing.Text = "绑定房号";
|
|||
|
|
this.btnBing.UseVisualStyleBackColor = true;
|
|||
|
|
//
|
|||
|
|
// btnClose
|
|||
|
|
//
|
|||
|
|
this.btnClose.Location = new System.Drawing.Point(623, 11);
|
|||
|
|
this.btnClose.Name = "btnClose";
|
|||
|
|
this.btnClose.Size = new System.Drawing.Size(75, 23);
|
|||
|
|
this.btnClose.TabIndex = 4;
|
|||
|
|
this.btnClose.Text = "关闭";
|
|||
|
|
this.btnClose.UseVisualStyleBackColor = true;
|
|||
|
|
//
|
|||
|
|
// btnRefresh
|
|||
|
|
//
|
|||
|
|
this.btnRefresh.Location = new System.Drawing.Point(380, 11);
|
|||
|
|
this.btnRefresh.Name = "btnRefresh";
|
|||
|
|
this.btnRefresh.Size = new System.Drawing.Size(75, 23);
|
|||
|
|
this.btnRefresh.TabIndex = 5;
|
|||
|
|
this.btnRefresh.Text = "刷新";
|
|||
|
|
this.btnRefresh.UseVisualStyleBackColor = true;
|
|||
|
|
//
|
|||
|
|
// cmbHotelCode
|
|||
|
|
//
|
|||
|
|
this.cmbHotelCode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
|||
|
|
this.cmbHotelCode.FormattingEnabled = true;
|
|||
|
|
this.cmbHotelCode.Location = new System.Drawing.Point(74, 12);
|
|||
|
|
this.cmbHotelCode.Name = "cmbHotelCode";
|
|||
|
|
this.cmbHotelCode.Size = new System.Drawing.Size(300, 20);
|
|||
|
|
this.cmbHotelCode.TabIndex = 8;
|
|||
|
|
//
|
|||
|
|
// label1
|
|||
|
|
//
|
|||
|
|
this.label1.AutoSize = true;
|
|||
|
|
this.label1.Location = new System.Drawing.Point(15, 16);
|
|||
|
|
this.label1.Name = "label1";
|
|||
|
|
this.label1.Size = new System.Drawing.Size(53, 12);
|
|||
|
|
this.label1.TabIndex = 7;
|
|||
|
|
this.label1.Text = "所属酒店";
|
|||
|
|
//
|
|||
|
|
// btnCleanBing
|
|||
|
|
//
|
|||
|
|
this.btnCleanBing.Location = new System.Drawing.Point(542, 11);
|
|||
|
|
this.btnCleanBing.Name = "btnCleanBing";
|
|||
|
|
this.btnCleanBing.Size = new System.Drawing.Size(75, 23);
|
|||
|
|
this.btnCleanBing.TabIndex = 9;
|
|||
|
|
this.btnCleanBing.Text = "解除绑定";
|
|||
|
|
this.btnCleanBing.UseVisualStyleBackColor = true;
|
|||
|
|
//
|
|||
|
|
// frmFace
|
|||
|
|
//
|
|||
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
|||
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
|
this.ClientSize = new System.Drawing.Size(855, 622);
|
|||
|
|
this.Controls.Add(this.btnCleanBing);
|
|||
|
|
this.Controls.Add(this.cmbHotelCode);
|
|||
|
|
this.Controls.Add(this.label1);
|
|||
|
|
this.Controls.Add(this.btnRefresh);
|
|||
|
|
this.Controls.Add(this.btnClose);
|
|||
|
|
this.Controls.Add(this.btnBing);
|
|||
|
|
this.Controls.Add(this.grdData);
|
|||
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|||
|
|
this.Name = "frmFace";
|
|||
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|||
|
|
this.Text = "人脸机管理";
|
|||
|
|
this.Load += new System.EventHandler(this.frmFace_Load);
|
|||
|
|
((System.ComponentModel.ISupportInitialize)(this.grdData)).EndInit();
|
|||
|
|
this.ResumeLayout(false);
|
|||
|
|
this.PerformLayout();
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
#endregion
|
|||
|
|
|
|||
|
|
private System.Windows.Forms.DataGridView grdData;
|
|||
|
|
private System.Windows.Forms.Button btnBing;
|
|||
|
|
private System.Windows.Forms.Button btnClose;
|
|||
|
|
private System.Windows.Forms.Button btnRefresh;
|
|||
|
|
private System.Windows.Forms.ComboBox cmbHotelCode;
|
|||
|
|
private System.Windows.Forms.Label label1;
|
|||
|
|
private System.Windows.Forms.Button btnCleanBing;
|
|||
|
|
}
|
|||
|
|
}
|