EmployeeContract.Designer.cs 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. namespace MTWorkHR.Infrastructure.Reports
  2. {
  3. partial class EmployeeContract
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. DevExpress.DataAccess.Sql.CustomSqlQuery customSqlQuery1 = new DevExpress.DataAccess.Sql.CustomSqlQuery();
  30. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(EmployeeContract));
  31. this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand();
  32. this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand();
  33. this.Detail = new DevExpress.XtraReports.UI.DetailBand();
  34. this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
  35. this.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
  36. this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel();
  37. this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
  38. ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
  39. //
  40. // TopMargin
  41. //
  42. this.TopMargin.Name = "TopMargin";
  43. //
  44. // BottomMargin
  45. //
  46. this.BottomMargin.Name = "BottomMargin";
  47. //
  48. // Detail
  49. //
  50. this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
  51. this.xrLabel3,
  52. this.xrLabel2,
  53. this.xrLabel1});
  54. this.Detail.Name = "Detail";
  55. //
  56. // xrLabel1
  57. //
  58. this.xrLabel1.Font = new DevExpress.Drawing.DXFont("Arial", 19F, DevExpress.Drawing.DXFontStyle.Bold);
  59. this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(169.1667F, 25F);
  60. this.xrLabel1.Multiline = true;
  61. this.xrLabel1.Name = "xrLabel1";
  62. this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  63. this.xrLabel1.SizeF = new System.Drawing.SizeF(349.1666F, 47.16666F);
  64. this.xrLabel1.StylePriority.UseFont = false;
  65. this.xrLabel1.Text = "Hi my friend";
  66. //
  67. // sqlDataSource1
  68. //
  69. this.sqlDataSource1.ConnectionName = "LocalConnectionString";
  70. this.sqlDataSource1.Name = "sqlDataSource1";
  71. customSqlQuery1.Name = "Query";
  72. customSqlQuery1.Sql = "select * from contracts";
  73. this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
  74. customSqlQuery1});
  75. this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
  76. //
  77. // xrLabel2
  78. //
  79. this.xrLabel2.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
  80. new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[BillingCycle]")});
  81. this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(45.83333F, 76.99999F);
  82. this.xrLabel2.Multiline = true;
  83. this.xrLabel2.Name = "xrLabel2";
  84. this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
  85. this.xrLabel2.SizeF = new System.Drawing.SizeF(100F, 23F);
  86. this.xrLabel2.Text = "xrLabel2";
  87. this.xrLabel2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
  88. //
  89. // xrLabel3
  90. //
  91. this.xrLabel3.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
  92. new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[CreateDate]")});
  93. this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(217.5F, 76.99999F);
  94. this.xrLabel3.Multiline = true;
  95. this.xrLabel3.Name = "xrLabel3";
  96. this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
  97. this.xrLabel3.SizeF = new System.Drawing.SizeF(100F, 23F);
  98. this.xrLabel3.Text = "xrLabel3";
  99. this.xrLabel3.TextFormatString = "{0:d}";
  100. //
  101. // EmployeeContract
  102. //
  103. this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
  104. this.TopMargin,
  105. this.BottomMargin,
  106. this.Detail});
  107. this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
  108. this.sqlDataSource1});
  109. this.DataMember = "Query";
  110. this.DataSource = this.sqlDataSource1;
  111. this.Font = new DevExpress.Drawing.DXFont("Arial", 9.75F);
  112. this.Version = "24.1";
  113. ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
  114. }
  115. #endregion
  116. private DevExpress.XtraReports.UI.TopMarginBand TopMargin;
  117. private DevExpress.XtraReports.UI.BottomMarginBand BottomMargin;
  118. private DevExpress.XtraReports.UI.DetailBand Detail;
  119. private DevExpress.XtraReports.UI.XRLabel xrLabel1;
  120. private DevExpress.DataAccess.Sql.SqlDataSource sqlDataSource1;
  121. private DevExpress.XtraReports.UI.XRLabel xrLabel3;
  122. private DevExpress.XtraReports.UI.XRLabel xrLabel2;
  123. }
  124. }