📄 form1.designer.cs
字号:
using System.Diagnostics;
using System;
using System.Xml.Linq;
using System.Windows.Forms;
using System.Collections;
using System.Drawing;
using Microsoft.VisualBasic;
using System.Data;
using System.Collections.Generic;
using System.Linq;
namespace SQLceISAM
{
public partial class Form1 : System.Windows.Forms.Form
{
//Form overrides dispose to clean up the component list.
[System.Diagnostics.DebuggerNonUserCode()]protected override void Dispose(bool disposing)
{
try
{
if (disposing && (components != null))
{
components.Dispose();
}
}
finally
{
base.Dispose(disposing);
}
}
//Required by the Windows Form Designer
private System.ComponentModel.Container components = null;
//NOTE: The following procedure is required by the Windows Form Designer
//It can be modified using the Windows Form Designer.
//Do not modify it using the code editor.
[System.Diagnostics.DebuggerStepThrough()]private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
base.Load += new System.EventHandler(Form1_Load);
this.DataGridView1 = new System.Windows.Forms.DataGridView();
this.BindingSource1 = new System.Windows.Forms.BindingSource(this.components);
this.IndexListBox = new System.Windows.Forms.ListBox();
this.IndexListBox.SelectedIndexChanged += new System.EventHandler(IndexListBox_SelectedIndexChanged);
this.Label1 = new System.Windows.Forms.Label();
this.Label2 = new System.Windows.Forms.Label();
this.IndexBindingSource = new System.Windows.Forms.BindingSource(this.components);
((System.ComponentModel.ISupportInitialize) this.DataGridView1).BeginInit();
((System.ComponentModel.ISupportInitialize) this.BindingSource1).BeginInit();
((System.ComponentModel.ISupportInitialize) this.IndexBindingSource).BeginInit();
this.SuspendLayout();
//
//DataGridView1
//
this.DataGridView1.Anchor = (System.Windows.Forms.AnchorStyles) (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right);
this.DataGridView1.AutoGenerateColumns = false;
this.DataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.DataGridView1.DataSource = this.BindingSource1;
this.DataGridView1.Location = new System.Drawing.Point(12, 102);
this.DataGridView1.Name = "DataGridView1";
this.DataGridView1.Size = new System.Drawing.Size(539, 201);
this.DataGridView1.TabIndex = 0;
//
//IndexListBox
//
this.IndexListBox.Anchor = (System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right);
this.IndexListBox.FormattingEnabled = true;
this.IndexListBox.Location = new System.Drawing.Point(359, 27);
this.IndexListBox.Name = "IndexListBox";
this.IndexListBox.Size = new System.Drawing.Size(192, 69);
this.IndexListBox.TabIndex = 1;
//
//Label1
//
this.Label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.0F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte) (0)));
this.Label1.Location = new System.Drawing.Point(12, 12);
this.Label1.Name = "Label1";
this.Label1.Size = new System.Drawing.Size(341, 84);
this.Label1.TabIndex = 2;
this.Label1.Text = "Iterating and Sorting SQL Server Compact Database via ISAM/Indexes";
//
//Label2
//
this.Label2.Anchor = (System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right);
this.Label2.AutoSize = true;
this.Label2.Location = new System.Drawing.Point(356, 9);
this.Label2.Name = "Label2";
this.Label2.Size = new System.Drawing.Size(36, 13);
this.Label2.TabIndex = 3;
this.Label2.Text = "Index:";
//
//Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6.0f, 13.0f);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(563, 315);
this.Controls.Add(this.Label2);
this.Controls.Add(this.Label1);
this.Controls.Add(this.IndexListBox);
this.Controls.Add(this.DataGridView1);
this.Name = "Form1";
this.Text = "ISAM Data Access";
((System.ComponentModel.ISupportInitialize) this.DataGridView1).EndInit();
((System.ComponentModel.ISupportInitialize) this.BindingSource1).EndInit();
((System.ComponentModel.ISupportInitialize) this.IndexBindingSource).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
internal System.Windows.Forms.DataGridView DataGridView1;
internal System.Windows.Forms.ListBox IndexListBox;
internal System.Windows.Forms.Label Label1;
internal System.Windows.Forms.Label Label2;
internal System.Windows.Forms.BindingSource BindingSource1;
internal System.Windows.Forms.BindingSource IndexBindingSource;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -