Load theme icons

This commit is contained in:
Michael Becker 2015-04-30 13:53:00 -04:00
parent fa461a5d89
commit 5463c9bf1b

View File

@ -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)