81 lines
2.6 KiB
C#
81 lines
2.6 KiB
C#
namespace DHSoftware.Views
|
|
{
|
|
partial class AddCameraWindow
|
|
{
|
|
/// <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()
|
|
{
|
|
btnOK = new AntdUI.Button();
|
|
btnCancel = new AntdUI.Button();
|
|
stName = new AntdUI.Select();
|
|
SuspendLayout();
|
|
//
|
|
// btnOK
|
|
//
|
|
btnOK.Location = new Point(170, 136);
|
|
btnOK.Name = "btnOK";
|
|
btnOK.Size = new Size(75, 40);
|
|
btnOK.TabIndex = 1;
|
|
btnOK.Text = "确定";
|
|
btnOK.Click += btnOK_Click;
|
|
//
|
|
// btnCancel
|
|
//
|
|
btnCancel.Location = new Point(259, 136);
|
|
btnCancel.Name = "btnCancel";
|
|
btnCancel.Size = new Size(75, 40);
|
|
btnCancel.TabIndex = 2;
|
|
btnCancel.Text = "取消";
|
|
btnCancel.Click += btnCancel_Click;
|
|
//
|
|
// stName
|
|
//
|
|
stName.Location = new Point(39, 46);
|
|
stName.Name = "stName";
|
|
stName.PlaceholderText = "请选择关联相机";
|
|
stName.Size = new Size(281, 50);
|
|
stName.TabIndex = 3;
|
|
//
|
|
// AddCameraWindow
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 17F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(369, 188);
|
|
Controls.Add(stName);
|
|
Controls.Add(btnCancel);
|
|
Controls.Add(btnOK);
|
|
Name = "AddCameraWindow";
|
|
StartPosition = FormStartPosition.CenterParent;
|
|
Text = "AddCubicleWindow";
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
private AntdUI.Button btnOK;
|
|
private AntdUI.Button btnCancel;
|
|
private AntdUI.Select stName;
|
|
}
|
|
} |