StartPageTab.cs 466 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Drawing;
  5. using FastReport.Utils;
  6. namespace FastReport.Design
  7. {
  8. internal class StartPageTab : DocumentWindow
  9. {
  10. private Designer designer;
  11. public StartPageTab(Designer designer) : base()
  12. {
  13. this.designer = designer;
  14. ParentControl.BackColor = SystemColors.Window;
  15. Text = Res.Get("Designer,StartPage");
  16. }
  17. }
  18. }