PageElement.cs 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Globalization;
  4. using System.Windows;
  5. using System.Windows.Controls;
  6. using System.Windows.Media;
  7. using GCHR.Model.Konto;
  8. namespace GCHR.Control.Printing
  9. {
  10. public class PageElement : UserControl
  11. {
  12. private const int PageMargin = 75;
  13. private const int HeaderHeight = 25;
  14. private const int LineHeight = 20;
  15. private const int ColumnWidth1 = 75;
  16. private const int ColumnWidth2 = 350;
  17. private const int ColumnWidth3 = 100;
  18. private const int ColumnWidth4 = 100;
  19. private readonly int _currentRow;
  20. private readonly int _rows;
  21. private readonly List<HaendlerKonto> _konten;
  22. private readonly String _aktuellePeriode;
  23. private readonly String _altePeriode;
  24. public PageElement(int currentRow, int rows, List<HaendlerKonto> konten, String aktuellePeriode, String altePeriode)
  25. {
  26. //Console.WriteLine("Test");
  27. Margin = new Thickness(PageMargin);
  28. _currentRow = currentRow;
  29. _rows = rows;
  30. _konten = konten;
  31. _aktuellePeriode = aktuellePeriode;
  32. _altePeriode = altePeriode;
  33. }
  34. public static int RowsPerPage(double height)
  35. {
  36. return (int)Math.Floor((height - (2 * PageMargin) - HeaderHeight) / LineHeight);
  37. }
  38. private static FormattedText MakeText(string text, bool rechtsbündig)
  39. {
  40. if (rechtsbündig)
  41. return new FormattedText(text, CultureInfo.CurrentCulture,
  42. FlowDirection.RightToLeft, new Typeface("Tahoma"), 10, Brushes.Black);
  43. return new FormattedText(text, CultureInfo.CurrentCulture,
  44. FlowDirection.LeftToRight, new Typeface("Tahoma"), 10, Brushes.Black);
  45. }
  46. protected override void OnRender(DrawingContext dc)
  47. {
  48. var curPoint = new Point(0, 0);
  49. dc.DrawText(MakeText("Kontonummer", false), curPoint);
  50. curPoint.X += ColumnWidth1;
  51. /*for (int i = 1; i < 4; i++)
  52. {
  53. dc.DrawText(MakeText("Column " + i), curPoint);
  54. curPoint.X += ColumnWidth;
  55. }*/
  56. dc.DrawText(MakeText("Beschriftung", false), curPoint);
  57. curPoint.X += ColumnWidth2;
  58. curPoint.X += ColumnWidth3;
  59. String temp = "Neuer Wert - " + _aktuellePeriode;
  60. dc.DrawText(MakeText(temp, true), curPoint);
  61. curPoint.X += ColumnWidth4;
  62. temp = "Vormonat - " + _altePeriode;
  63. dc.DrawText(MakeText(temp, true), curPoint);
  64. curPoint.X = 0;
  65. curPoint.Y += LineHeight;
  66. dc.DrawRectangle(Brushes.Black, null, new Rect(curPoint, new Size(Width, 2)));
  67. curPoint.Y += HeaderHeight - LineHeight;
  68. // var numberGen = new Random();
  69. for (var i = _currentRow; i < _currentRow + _rows; i++)
  70. {
  71. HaendlerKonto konto = _konten[i];
  72. //Console.WriteLine("Aktuell: " + konto.Kontonummer);
  73. //dc.DrawText(MakeText(i.ToString()), curPoint);
  74. dc.DrawText(MakeText(konto.Kontonummer, false), curPoint);
  75. curPoint.X += ColumnWidth1;
  76. dc.DrawText(MakeText(konto.Bezeichnung, false), curPoint);
  77. curPoint.X += ColumnWidth2;
  78. curPoint.X += ColumnWidth3;
  79. dc.DrawText(MakeText(konto.Soll.ToString("0.00"), true), curPoint);
  80. curPoint.X += ColumnWidth4;
  81. dc.DrawText(MakeText(konto.Haben.ToString("0.00"), true), curPoint);
  82. /*for (int j = 1; j < 4; j++)
  83. {
  84. dc.DrawText(MakeText(numberGen.Next().ToString()), curPoint);
  85. curPoint.X += ColumnWidth;
  86. }*/
  87. curPoint.Y += LineHeight;
  88. curPoint.X = 0;
  89. }
  90. }
  91. }
  92. }