ffine.designer.cs
来自「 一个用C#编写的图书管系统」· CS 代码 · 共 123 行
CS
123 行
namespace Library
{
partial class fFine
{
/// <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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(fFine));
this.label1 = new System.Windows.Forms.Label();
this.tbMoney = new System.Windows.Forms.TextBox();
this.btCancel = new System.Windows.Forms.Button();
this.btOK = new System.Windows.Forms.Button();
this.label2 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label1.Location = new System.Drawing.Point(19, 115);
this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(119, 14);
this.label1.TabIndex = 0;
this.label1.Text = "请输入罚款金额:";
//
// tbMoney
//
this.tbMoney.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.tbMoney.Location = new System.Drawing.Point(139, 110);
this.tbMoney.Margin = new System.Windows.Forms.Padding(4);
this.tbMoney.Name = "tbMoney";
this.tbMoney.Size = new System.Drawing.Size(108, 26);
this.tbMoney.TabIndex = 1;
//
// btCancel
//
this.btCancel.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.btCancel.Location = new System.Drawing.Point(157, 178);
this.btCancel.Margin = new System.Windows.Forms.Padding(4);
this.btCancel.Name = "btCancel";
this.btCancel.Size = new System.Drawing.Size(61, 34);
this.btCancel.TabIndex = 2;
this.btCancel.Text = "取消";
this.btCancel.UseVisualStyleBackColor = true;
this.btCancel.Click += new System.EventHandler(this.btCancel_Click);
//
// btOK
//
this.btOK.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.btOK.Location = new System.Drawing.Point(53, 178);
this.btOK.Margin = new System.Windows.Forms.Padding(4);
this.btOK.Name = "btOK";
this.btOK.Size = new System.Drawing.Size(61, 31);
this.btOK.TabIndex = 3;
this.btOK.Text = "确定";
this.btOK.UseVisualStyleBackColor = true;
this.btOK.Click += new System.EventHandler(this.btOK_Click);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Font = new System.Drawing.Font("楷体_GB2312", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label2.Location = new System.Drawing.Point(86, 39);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(106, 24);
this.label2.TabIndex = 4;
this.label2.Text = "罚款设定";
//
// fFine
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(271, 253);
this.Controls.Add(this.label2);
this.Controls.Add(this.btOK);
this.Controls.Add(this.btCancel);
this.Controls.Add(this.tbMoney);
this.Controls.Add(this.label1);
this.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Margin = new System.Windows.Forms.Padding(4);
this.Name = "fFine";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "罚款设定";
this.Load += new System.EventHandler(this.fFine_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox tbMoney;
private System.Windows.Forms.Button btCancel;
private System.Windows.Forms.Button btOK;
private System.Windows.Forms.Label label2;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?