From 5463c9bf1b1cbb48bd5af24e0e288aeab679d0ec Mon Sep 17 00:00:00 2001 From: alcexhim Date: Thu, 30 Apr 2015 13:53:00 -0400 Subject: [PATCH] Load theme icons --- .../Controls/OutputWindow.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CSharp/Engines/WindowsForms/Engines/UniversalEditor.UserInterface.WindowsForms.DesktopApplication/Controls/OutputWindow.cs b/CSharp/Engines/WindowsForms/Engines/UniversalEditor.UserInterface.WindowsForms.DesktopApplication/Controls/OutputWindow.cs index 80b8f5d9..4cee879f 100644 --- a/CSharp/Engines/WindowsForms/Engines/UniversalEditor.UserInterface.WindowsForms.DesktopApplication/Controls/OutputWindow.cs +++ b/CSharp/Engines/WindowsForms/Engines/UniversalEditor.UserInterface.WindowsForms.DesktopApplication/Controls/OutputWindow.cs @@ -5,6 +5,8 @@ using System.Drawing; using System.Text; using System.Windows.Forms; +using AwesomeControls; + namespace UniversalEditor.UserInterface.WindowsForms.Controls { public partial class OutputWindow : UserControl @@ -17,6 +19,8 @@ namespace UniversalEditor.UserInterface.WindowsForms.Controls txtOutput.ForeColor = AwesomeControls.Theming.Theme.CurrentTheme.ColorTable.WindowForeground; txtOutput.Font = new System.Drawing.Font(System.Drawing.FontFamily.GenericMonospace, 10, FontStyle.Regular); txtOutput.BorderStyle = System.Windows.Forms.BorderStyle.None; + + cbToolBar1.LoadThemeIcons("OutputWindow"); } public void AppendText(string text)