📄 orderdialog.designer.cs
字号:
namespace WindowsApplication2
{
partial class OrderDialog
{
/// <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(OrderDialog));
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
this.ORDER_ID = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.ORDER_DATE = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.CUSTOMER_NAME = new System.Windows.Forms.DataGridViewTextBoxColumn();
((System.ComponentModel.ISupportInitialize)(this.gridLookup)).BeginInit();
this.SuspendLayout();
//
// gridLookup
//
this.gridLookup.AccessibleDescription = null;
this.gridLookup.AccessibleName = null;
this.gridLookup.AllowUserToAddRows = false;
this.gridLookup.AllowUserToDeleteRows = false;
resources.ApplyResources(this.gridLookup, "gridLookup");
this.gridLookup.BackgroundImage = null;
this.gridLookup.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.ORDER_ID,
this.ORDER_DATE,
this.CUSTOMER_NAME});
this.gridLookup.Font = null;
this.gridLookup.MultiSelect = false;
this.gridLookup.RowTemplate.Height = 24;
//
// ORDER_ID
//
this.ORDER_ID.DataPropertyName = "ORDER_ID";
resources.ApplyResources(this.ORDER_ID, "ORDER_ID");
this.ORDER_ID.Name = "ORDER_ID";
this.ORDER_ID.ReadOnly = true;
//
// ORDER_DATE
//
this.ORDER_DATE.DataPropertyName = "ORDER_DATE";
dataGridViewCellStyle1.Format = "d";
dataGridViewCellStyle1.NullValue = null;
this.ORDER_DATE.DefaultCellStyle = dataGridViewCellStyle1;
resources.ApplyResources(this.ORDER_DATE, "ORDER_DATE");
this.ORDER_DATE.Name = "ORDER_DATE";
this.ORDER_DATE.ReadOnly = true;
//
// CUSTOMER_NAME
//
this.CUSTOMER_NAME.DataPropertyName = "CUSTOMER_NAME";
resources.ApplyResources(this.CUSTOMER_NAME, "CUSTOMER_NAME");
this.CUSTOMER_NAME.Name = "CUSTOMER_NAME";
this.CUSTOMER_NAME.ReadOnly = true;
//
// OrderDialog
//
this.AccessibleDescription = null;
this.AccessibleName = null;
resources.ApplyResources(this, "$this");
this.BackgroundImage = null;
this.Font = null;
this.Icon = null;
this.Name = "OrderDialog";
((System.ComponentModel.ISupportInitialize)(this.gridLookup)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.DataGridViewTextBoxColumn ORDER_ID;
private System.Windows.Forms.DataGridViewTextBoxColumn ORDER_DATE;
private System.Windows.Forms.DataGridViewTextBoxColumn CUSTOMER_NAME;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -