StartPageTab.cs 483 B

12345678910111213141516171819202122
  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. #if !MONO
  15. ParentControl.BackColor = SystemColors.Window;
  16. #endif
  17. Text = Res.Get("Designer,StartPage");
  18. }
  19. }
  20. }