📄 form_base_stock.designer.cs
字号:
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label1.Location = new System.Drawing.Point(31, 17);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(29, 12);
this.label1.TabIndex = 6;
this.label1.Text = "代码";
//
// Cancel
//
this.Cancel.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.Cancel.Location = new System.Drawing.Point(255, 206);
this.Cancel.Name = "Cancel";
this.Cancel.Size = new System.Drawing.Size(83, 21);
this.Cancel.TabIndex = 26;
this.Cancel.Text = "取消(&C)";
this.Cancel.UseVisualStyleBackColor = true;
//
// Save
//
this.Save.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.Save.Location = new System.Drawing.Point(97, 206);
this.Save.Name = "Save";
this.Save.Size = new System.Drawing.Size(85, 22);
this.Save.TabIndex = 25;
this.Save.Text = "添加(&S)";
this.Save.UseVisualStyleBackColor = true;
//
// StockView
//
this.StockView.AllowDrop = true;
this.StockView.AllowUserToOrderColumns = true;
this.StockView.AutoGenerateColumns = false;
this.StockView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.StockView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.ID,
this.userCodeDataGridViewTextBoxColumn,
this.fullNameDataGridViewTextBoxColumn,
this.nameDataGridViewTextBoxColumn,
this.telDataGridViewTextBoxColumn,
this.linkManDataGridViewTextBoxColumn,
this.commentDataGridViewTextBoxColumn});
this.StockView.DataSource = this.dataSetStock;
this.StockView.Location = new System.Drawing.Point(34, 301);
this.StockView.Name = "StockView";
this.StockView.RowTemplate.Height = 23;
this.StockView.Size = new System.Drawing.Size(734, 140);
this.StockView.TabIndex = 27;
//
// ID
//
this.ID.DataPropertyName = "ID";
this.ID.HeaderText = "编号";
this.ID.Name = "ID";
this.ID.ReadOnly = true;
//
// userCodeDataGridViewTextBoxColumn
//
this.userCodeDataGridViewTextBoxColumn.DataPropertyName = "UserCode";
this.userCodeDataGridViewTextBoxColumn.HeaderText = "代码";
this.userCodeDataGridViewTextBoxColumn.Name = "userCodeDataGridViewTextBoxColumn";
//
// fullNameDataGridViewTextBoxColumn
//
this.fullNameDataGridViewTextBoxColumn.DataPropertyName = "FullName";
this.fullNameDataGridViewTextBoxColumn.HeaderText = "全名";
this.fullNameDataGridViewTextBoxColumn.Name = "fullNameDataGridViewTextBoxColumn";
//
// nameDataGridViewTextBoxColumn
//
this.nameDataGridViewTextBoxColumn.DataPropertyName = "Name";
this.nameDataGridViewTextBoxColumn.HeaderText = "简名";
this.nameDataGridViewTextBoxColumn.Name = "nameDataGridViewTextBoxColumn";
//
// telDataGridViewTextBoxColumn
//
this.telDataGridViewTextBoxColumn.DataPropertyName = "Tel";
this.telDataGridViewTextBoxColumn.HeaderText = "电话";
this.telDataGridViewTextBoxColumn.Name = "telDataGridViewTextBoxColumn";
//
// linkManDataGridViewTextBoxColumn
//
this.linkManDataGridViewTextBoxColumn.DataPropertyName = "LinkMan";
this.linkManDataGridViewTextBoxColumn.HeaderText = "联系人";
this.linkManDataGridViewTextBoxColumn.Name = "linkManDataGridViewTextBoxColumn";
//
// commentDataGridViewTextBoxColumn
//
this.commentDataGridViewTextBoxColumn.DataPropertyName = "Comment";
this.commentDataGridViewTextBoxColumn.HeaderText = "备注";
this.commentDataGridViewTextBoxColumn.Name = "commentDataGridViewTextBoxColumn";
//
// dataSetStock
//
this.dataSetStock.DataMember = "Stock";
this.dataSetStock.DataSource = this.Stock;
//
// Stock
//
this.Stock.DataSetName = "DataSet_Tables";
this.Stock.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
//
// stockTableAdapter
//
this.stockTableAdapter.ClearBeforeFill = true;
//
// Form_Base_Stock
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.ClientSize = new System.Drawing.Size(792, 493);
this.Controls.Add(this.StockView);
this.Controls.Add(this.Cancel);
this.Controls.Add(this.Save);
this.Controls.Add(this.Comment);
this.Controls.Add(this.Adress);
this.Controls.Add(this.Fullname);
this.Controls.Add(this.tel);
this.Controls.Add(this.LinkMan);
this.Controls.Add(this.name);
this.Controls.Add(this.UserCode);
this.Controls.Add(this.label7);
this.Controls.Add(this.label6);
this.Controls.Add(this.label5);
this.Controls.Add(this.label4);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Location = new System.Drawing.Point(0, 0);
this.Name = "Form_Base_Stock";
this.Text = "仓库档案";
this.Load += new System.EventHandler(this.Form_Base_Stock_Load);
((System.ComponentModel.ISupportInitialize)(this.StockView)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.dataSetStock)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.Stock)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox Comment;
private System.Windows.Forms.TextBox Adress;
private System.Windows.Forms.TextBox Fullname;
private System.Windows.Forms.TextBox tel;
private System.Windows.Forms.TextBox LinkMan;
private System.Windows.Forms.TextBox name;
private System.Windows.Forms.TextBox UserCode;
private System.Windows.Forms.Label label7;
private System.Windows.Forms.Label label6;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button Cancel;
private System.Windows.Forms.Button Save;
private System.Windows.Forms.DataGridView StockView;
private System.Windows.Forms.BindingSource dataSetStock;
private DataSet_Tables Stock;
private RepairCRM.DataSet_TablesTableAdapters.StockTableAdapter stockTableAdapter;
private System.Windows.Forms.DataGridViewTextBoxColumn ID;
private System.Windows.Forms.DataGridViewTextBoxColumn userCodeDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn fullNameDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn nameDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn telDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn linkManDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn commentDataGridViewTextBoxColumn;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -