// Initialize the theme painters.
		static ThemeManager()
		{
			mainPainter = CreateDefaultThemePainter();
			systemPainter = mainPainter;
		}
 public HelpWindow(IThemePainter theme) : base(theme)
 {
 }
示例#3
0
 // Initialize the theme painters.
 static ThemeManager()
 {
     mainPainter   = CreateDefaultThemePainter();
     systemPainter = mainPainter;
 }
 public IApplicationWindow(IThemePainter theme)
 {
     this.theme = theme;
 }