Initialize TreeView and TextBox theme colors

This commit is contained in:
Michael Becker 2015-04-30 22:46:40 -04:00
parent 9693cb937f
commit cf4e4ff3ec

View File

@ -27,6 +27,11 @@ namespace UniversalEditor.UserInterface.WindowsForms.Controls
imlSmallIcons.Images.Add("generic-project", Properties.Resources.project_icon);
cbToolBar1.LoadThemeIcons("SolutionExplorer");
txtFilter.BackColor = AwesomeControls.Theming.Theme.CurrentTheme.ColorTable.DropDownBackgroundColorNormal;
txtFilter.ForeColor = AwesomeControls.Theming.Theme.CurrentTheme.ColorTable.DropDownForegroundColorNormal;
tv.BackColor = AwesomeControls.Theming.Theme.CurrentTheme.ColorTable.WindowBackground;
}
private MainWindow mvarParentWindow = null;