mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-02-20 21:36:49 +01:00
56 lines
2.6 KiB
Plaintext
56 lines
2.6 KiB
Plaintext
/// <XRTypeInfo>
|
|
/// <AssemblyFullName>DevExpress.XtraReports.v13.1, Version=13.1.6.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</AssemblyFullName>
|
|
/// <AssemblyLocation>C:\Windows\Microsoft.Net\assembly\GAC_MSIL\DevExpress.XtraReports.v13.1\v4.0_13.1.6.0__b88d1754d700e49a\DevExpress.XtraReports.v13.1.dll</AssemblyLocation>
|
|
/// <TypeName>DevExpress.XtraReports.UI.XtraReport</TypeName>
|
|
/// <Localization>en-US</Localization>
|
|
/// <Version>13.1</Version>
|
|
/// <Resources>
|
|
/// <Resource Name="XtraReportSerialization.XtraReport">
|
|
/// zsrvvgEAAACRAAAAbFN5c3RlbS5SZXNvdXJjZXMuUmVzb3VyY2VSZWFkZXIsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OSNTeXN0ZW0uUmVzb3VyY2VzLlJ1bnRpbWVSZXNvdXJjZVNldAIAAAAAAAAAAAAAAFBBRFBBRFC0AAAA</Resource>
|
|
/// </Resources>
|
|
/// </XRTypeInfo>
|
|
namespace XtraReportSerialization {
|
|
|
|
public class XtraReport : DevExpress.XtraReports.UI.XtraReport {
|
|
private DevExpress.XtraReports.UI.XRControlStyle Heading;
|
|
private DevExpress.XtraReports.UI.XRControlStyle Normal;
|
|
private System.Resources.ResourceManager _resources;
|
|
private string _resourceString;
|
|
public XtraReport() {
|
|
this._resourceString = DevExpress.XtraReports.Serialization.XRResourceManager.GetResourceFor("XtraReportSerialization.XtraReport");
|
|
this.InitializeComponent();
|
|
}
|
|
private System.Resources.ResourceManager resources {
|
|
get {
|
|
if (_resources == null) {
|
|
this._resources = new DevExpress.XtraReports.Serialization.XRResourceManager(this._resourceString);
|
|
}
|
|
return this._resources;
|
|
}
|
|
}
|
|
private void InitializeComponent() {
|
|
this.Heading = new DevExpress.XtraReports.UI.XRControlStyle();
|
|
this.Normal = new DevExpress.XtraReports.UI.XRControlStyle();
|
|
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
|
|
//
|
|
// Heading
|
|
//
|
|
this.Heading.Font = new System.Drawing.Font("Tahoma", 16F, System.Drawing.FontStyle.Bold);
|
|
this.Heading.Name = "Heading";
|
|
//
|
|
// Normal
|
|
//
|
|
this.Normal.Font = new System.Drawing.Font("Tahoma", 12F);
|
|
this.Normal.Name = "Normal";
|
|
//
|
|
// XtraReport
|
|
//
|
|
this.Name = "XtraReport";
|
|
this.PageHeight = 1100;
|
|
this.PageWidth = 850;
|
|
this.Version = "13.1";
|
|
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
|
|
}
|
|
}
|
|
}
|