using System; using System.Collections.Generic; using System.Text; using System.Drawing; using FastReport.Utils; namespace FastReport.Design { internal class StartPageTab : DocumentWindow { private Designer designer; public StartPageTab(Designer designer) : base() { this.designer = designer; #if !MONO ParentControl.BackColor = SystemColors.Window; #endif Text = Res.Get("Designer,StartPage"); } } }