📄 formadapter.designer.cs
字号:
namespace SqlDataAdapterExample
{
partial class FormAdapter
{
/// <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()
{
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.radioButtonMyTable2 = new System.Windows.Forms.RadioButton();
this.radioButtonMyTable1 = new System.Windows.Forms.RadioButton();
this.dataGridView1 = new System.Windows.Forms.DataGridView();
this.buttonOpen = new System.Windows.Forms.Button();
this.buttonSave = new System.Windows.Forms.Button();
this.groupBox1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
this.SuspendLayout();
//
// groupBox1
//
this.groupBox1.Controls.Add(this.radioButtonMyTable2);
this.groupBox1.Controls.Add(this.radioButtonMyTable1);
this.groupBox1.Location = new System.Drawing.Point(12, 163);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(144, 91);
this.groupBox1.TabIndex = 0;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "数据表";
//
// radioButtonMyTable2
//
this.radioButtonMyTable2.AutoSize = true;
this.radioButtonMyTable2.Location = new System.Drawing.Point(19, 64);
this.radioButtonMyTable2.Name = "radioButtonMyTable2";
this.radioButtonMyTable2.Size = new System.Drawing.Size(71, 16);
this.radioButtonMyTable2.TabIndex = 1;
this.radioButtonMyTable2.TabStop = true;
this.radioButtonMyTable2.Text = "MyTable2";
this.radioButtonMyTable2.UseVisualStyleBackColor = true;
//
// radioButtonMyTable1
//
this.radioButtonMyTable1.AutoSize = true;
this.radioButtonMyTable1.Location = new System.Drawing.Point(19, 28);
this.radioButtonMyTable1.Name = "radioButtonMyTable1";
this.radioButtonMyTable1.Size = new System.Drawing.Size(71, 16);
this.radioButtonMyTable1.TabIndex = 0;
this.radioButtonMyTable1.TabStop = true;
this.radioButtonMyTable1.Text = "MyTable1";
this.radioButtonMyTable1.UseVisualStyleBackColor = true;
//
// dataGridView1
//
this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridView1.Location = new System.Drawing.Point(-2, 0);
this.dataGridView1.Name = "dataGridView1";
this.dataGridView1.RowTemplate.Height = 23;
this.dataGridView1.Size = new System.Drawing.Size(294, 155);
this.dataGridView1.TabIndex = 1;
//
// buttonOpen
//
this.buttonOpen.Location = new System.Drawing.Point(193, 179);
this.buttonOpen.Name = "buttonOpen";
this.buttonOpen.Size = new System.Drawing.Size(69, 27);
this.buttonOpen.TabIndex = 2;
this.buttonOpen.Text = "打开";
this.buttonOpen.UseVisualStyleBackColor = true;
this.buttonOpen.Click += new System.EventHandler(this.buttonOpen_Click);
//
// buttonSave
//
this.buttonSave.Location = new System.Drawing.Point(193, 227);
this.buttonSave.Name = "buttonSave";
this.buttonSave.Size = new System.Drawing.Size(69, 27);
this.buttonSave.TabIndex = 2;
this.buttonSave.Text = "更新";
this.buttonSave.UseVisualStyleBackColor = true;
this.buttonSave.Click += new System.EventHandler(this.buttonSave_Click);
//
// FormAdapter
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(292, 266);
this.Controls.Add(this.buttonSave);
this.Controls.Add(this.buttonOpen);
this.Controls.Add(this.dataGridView1);
this.Controls.Add(this.groupBox1);
this.Name = "FormAdapter";
this.Text = "Form1";
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.RadioButton radioButtonMyTable1;
private System.Windows.Forms.DataGridView dataGridView1;
private System.Windows.Forms.Button buttonOpen;
private System.Windows.Forms.Button buttonSave;
private System.Windows.Forms.RadioButton radioButtonMyTable2;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -