fmpreview.designer.cs
来自「一个通讯录源码,用C#写的.挺不错的,大家可以参考看一下.」· CS 代码 · 共 69 行
CS
69 行
namespace AddressList.Forms
{
partial class fmPreview
{
/// <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.cryReportViewer = new CrystalDecisions.Windows.Forms.CrystalReportViewer();
this.reportDocument1 = new CrystalDecisions.CrystalReports.Engine.ReportDocument();
this.SuspendLayout();
//
// cryReportViewer
//
this.cryReportViewer.ActiveViewIndex = 0;
this.cryReportViewer.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.cryReportViewer.DisplayGroupTree = false;
this.cryReportViewer.Dock = System.Windows.Forms.DockStyle.Fill;
this.cryReportViewer.Location = new System.Drawing.Point(0, 0);
this.cryReportViewer.Name = "cryReportViewer";
this.cryReportViewer.ReportSource = this.reportDocument1;
this.cryReportViewer.Size = new System.Drawing.Size(741, 481);
this.cryReportViewer.TabIndex = 0;
//
// reportDocument1
//
this.reportDocument1.FileName = "rassdk://F:\\MyCode\\DotNet\\AddressList\\Reports\\FriendsReport.rpt";
//
// fmPreview
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.ClientSize = new System.Drawing.Size(741, 481);
this.Controls.Add(this.cryReportViewer);
this.Name = "fmPreview";
this.Text = "报表预览";
this.ResumeLayout(false);
}
#endregion
private CrystalDecisions.Windows.Forms.CrystalReportViewer cryReportViewer;
private CrystalDecisions.CrystalReports.Engine.ReportDocument reportDocument1;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?