public void SetTextStyle(TextStyle style) { TextStyle = style; }
private void SetTextStyle() { var iEditor = _pluginLoader.GetEditor(); TextStyle style = new TextStyle(); style.FontFamily = Properties.Settings.Default.TextBoxFontFamily; style.FontSize = Properties.Settings.Default.TextBoxFontSize; style.Background = new SolidColorBrush(Properties.Settings.Default.TextBoxBackgroundColor); style.Foreground = new SolidColorBrush(Properties.Settings.Default.TextBoxFontColor); iEditor.SetTextStyle(style); }