📄 form1.designer.cs
字号:
namespace Sqlcetests
{
partial class Form1
{
/// <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.components = new System.ComponentModel.Container();
this.myDatabase1DataSetBindingSource = new System.Windows.Forms.BindingSource(this.components);
this._MyDatabase_1DataSet = new Sqlcetests._MyDatabase_1DataSet();
this.dataGrid1 = new System.Windows.Forms.DataGrid();
this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
this.SuspendLayout();
//
// myDatabase1DataSetBindingSource
//
this.myDatabase1DataSetBindingSource.AllowNew = true;
this.myDatabase1DataSetBindingSource.DataSource = this._MyDatabase_1DataSet;
this.myDatabase1DataSetBindingSource.Position = 0;
//
// _MyDatabase_1DataSet
//
this._MyDatabase_1DataSet.DataSetName = "_MyDatabase_1DataSet";
this._MyDatabase_1DataSet.Prefix = "";
this._MyDatabase_1DataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
//
// dataGrid1
//
this.dataGrid1.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
this.dataGrid1.DataSource = this.myDatabase1DataSetBindingSource;
this.dataGrid1.Location = new System.Drawing.Point(0, 0);
this.dataGrid1.Name = "dataGrid1";
this.dataGrid1.RowHeadersVisible = false;
this.dataGrid1.Size = new System.Drawing.Size(260, 211);
this.dataGrid1.TabIndex = 0;
this.dataGrid1.Tag = "MyDatabase#1";
//
// bindingSource1
//
this.bindingSource1.DataSource = this._MyDatabase_1DataSet;
this.bindingSource1.Filter = "Select * from Test";
this.bindingSource1.Position = 0;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.AutoScroll = true;
this.ClientSize = new System.Drawing.Size(260, 289);
this.Controls.Add(this.dataGrid1);
this.Name = "Form1";
this.Text = "Form1";
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.DataGrid dataGrid1;
public System.Windows.Forms.BindingSource myDatabase1DataSetBindingSource;
public _MyDatabase_1DataSet _MyDatabase_1DataSet;
public System.Windows.Forms.BindingSource bindingSource1;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -