📄 form1.designer.cs
字号:
namespace ComplicatedReportExample
{
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.crystalReportViewer1 = new CrystalDecisions.Windows.Forms.CrystalReportViewer();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.radioButtonGE60 = new System.Windows.Forms.RadioButton();
this.radioButtonWang = new System.Windows.Forms.RadioButton();
this.radioButtonAll = new System.Windows.Forms.RadioButton();
this.myDatabaseDataSet1 = new ComplicatedReportExample.MyDatabaseDataSet();
this.myTable1TableAdapter1 = new ComplicatedReportExample.MyDatabaseDataSetTableAdapters.MyTable1TableAdapter();
this.myTable2TableAdapter1 = new ComplicatedReportExample.MyDatabaseDataSetTableAdapters.MyTable2TableAdapter();
this.myTable3TableAdapter1 = new ComplicatedReportExample.MyDatabaseDataSetTableAdapters.MyTable3TableAdapter();
this.studentReport1 = new ComplicatedReportExample.StudentReport();
this.groupBox1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.myDatabaseDataSet1)).BeginInit();
this.SuspendLayout();
//
// crystalReportViewer1
//
this.crystalReportViewer1.ActiveViewIndex = -1;
this.crystalReportViewer1.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.crystalReportViewer1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.crystalReportViewer1.Location = new System.Drawing.Point(12, 85);
this.crystalReportViewer1.Name = "crystalReportViewer1";
this.crystalReportViewer1.SelectionFormula = "";
this.crystalReportViewer1.Size = new System.Drawing.Size(573, 147);
this.crystalReportViewer1.TabIndex = 0;
this.crystalReportViewer1.ViewTimeSelectionFormula = "";
//
// groupBox1
//
this.groupBox1.Controls.Add(this.radioButtonGE60);
this.groupBox1.Controls.Add(this.radioButtonWang);
this.groupBox1.Controls.Add(this.radioButtonAll);
this.groupBox1.Location = new System.Drawing.Point(12, 12);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(579, 67);
this.groupBox1.TabIndex = 1;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "查询条件";
//
// radioButtonGE60
//
this.radioButtonGE60.AutoSize = true;
this.radioButtonGE60.Location = new System.Drawing.Point(363, 30);
this.radioButtonGE60.Name = "radioButtonGE60";
this.radioButtonGE60.Size = new System.Drawing.Size(167, 16);
this.radioButtonGE60.TabIndex = 0;
this.radioButtonGE60.Text = "所有成绩大于等于60的学生";
this.radioButtonGE60.UseVisualStyleBackColor = true;
this.radioButtonGE60.CheckedChanged += new System.EventHandler(this.radioButton_CheckedChanged);
//
// radioButtonWang
//
this.radioButtonWang.AutoSize = true;
this.radioButtonWang.Location = new System.Drawing.Point(122, 30);
this.radioButtonWang.Name = "radioButtonWang";
this.radioButtonWang.Size = new System.Drawing.Size(179, 16);
this.radioButtonWang.TabIndex = 0;
this.radioButtonWang.Text = "所有姓名中包含“王”的学生";
this.radioButtonWang.UseVisualStyleBackColor = true;
this.radioButtonWang.CheckedChanged += new System.EventHandler(this.radioButton_CheckedChanged);
//
// radioButtonAll
//
this.radioButtonAll.AutoSize = true;
this.radioButtonAll.Location = new System.Drawing.Point(19, 30);
this.radioButtonAll.Name = "radioButtonAll";
this.radioButtonAll.Size = new System.Drawing.Size(71, 16);
this.radioButtonAll.TabIndex = 0;
this.radioButtonAll.Text = "全部学生";
this.radioButtonAll.UseVisualStyleBackColor = true;
this.radioButtonAll.CheckedChanged += new System.EventHandler(this.radioButton_CheckedChanged);
//
// myDatabaseDataSet1
//
this.myDatabaseDataSet1.DataSetName = "MyDatabaseDataSet";
this.myDatabaseDataSet1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
//
// myTable1TableAdapter1
//
this.myTable1TableAdapter1.ClearBeforeFill = true;
//
// myTable2TableAdapter1
//
this.myTable2TableAdapter1.ClearBeforeFill = true;
//
// myTable3TableAdapter1
//
this.myTable3TableAdapter1.ClearBeforeFill = true;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(599, 244);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.crystalReportViewer1);
this.Name = "Form1";
this.Text = "查询学生基本信息";
this.Load += new System.EventHandler(this.Form1_Load);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.myDatabaseDataSet1)).EndInit();
this.ResumeLayout(false);
}
#endregion
private CrystalDecisions.Windows.Forms.CrystalReportViewer crystalReportViewer1;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.RadioButton radioButtonWang;
private System.Windows.Forms.RadioButton radioButtonAll;
private System.Windows.Forms.RadioButton radioButtonGE60;
private MyDatabaseDataSet myDatabaseDataSet1;
private ComplicatedReportExample.MyDatabaseDataSetTableAdapters.MyTable1TableAdapter myTable1TableAdapter1;
private ComplicatedReportExample.MyDatabaseDataSetTableAdapters.MyTable2TableAdapter myTable2TableAdapter1;
private ComplicatedReportExample.MyDatabaseDataSetTableAdapters.MyTable3TableAdapter myTable3TableAdapter1;
private StudentReport studentReport1;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -