📄 frmmanager.designer.cs
字号:
namespace StockMarket
{
partial class frmManager
{
/// <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()
{
this.dgView = new System.Windows.Forms.DataGridView();
this.btnSave = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.labCost = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.dgView)).BeginInit();
this.SuspendLayout();
//
// dgView
//
this.dgView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgView.Location = new System.Drawing.Point(1, 0);
this.dgView.Name = "dgView";
this.dgView.RowTemplate.Height = 23;
this.dgView.Size = new System.Drawing.Size(594, 328);
this.dgView.TabIndex = 0;
//
// btnSave
//
this.btnSave.Location = new System.Drawing.Point(509, 334);
this.btnSave.Name = "btnSave";
this.btnSave.Size = new System.Drawing.Size(75, 23);
this.btnSave.TabIndex = 1;
this.btnSave.Text = "&S.保 存";
this.btnSave.UseVisualStyleBackColor = true;
this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(13, 344);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(53, 12);
this.label1.TabIndex = 2;
this.label1.Text = "成本价:";
//
// labCost
//
this.labCost.AutoSize = true;
this.labCost.Location = new System.Drawing.Point(62, 343);
this.labCost.Name = "labCost";
this.labCost.Size = new System.Drawing.Size(47, 12);
this.labCost.TabIndex = 3;
this.labCost.Text = "labCost";
//
// frmManager
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(596, 362);
this.Controls.Add(this.labCost);
this.Controls.Add(this.label1);
this.Controls.Add(this.btnSave);
this.Controls.Add(this.dgView);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.Name = "frmManager";
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "管理买入股票";
this.Load += new System.EventHandler(this.frmManager_Load);
((System.ComponentModel.ISupportInitialize)(this.dgView)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.DataGridView dgView;
private System.Windows.Forms.Button btnSave;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label labCost;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -