using System; using System.Collections.Generic; using System.Windows; using System.Windows.Controls; namespace ComPDFKit.Controls.Edit { public partial class CPDFTextStyleUI : UserControl { #region public event EventHandler TextFontChanged; public event EventHandler TextBoldChanged; public event EventHandler TextItalicChanged; public event EventHandler TextSizeChanged; #endregion public CPDFTextStyleUI() { InitializeComponent(); } #region Set font name public void SetFontNames(List fontNames) { FontNameComboBox.ItemsSource = null; if (fontNames != null && fontNames.Count > 0) { List fontNameList = new List(); foreach (string fontName in fontNames) { fontNameList.Add(new ComboBoxItem() { Content = fontName, VerticalContentAlignment=VerticalAlignment.Center, HorizontalContentAlignment=HorizontalAlignment.Left }); } FontNameComboBox.ItemsSource = fontNameList; } } public void SelectFontName(string fontName) { if(string.IsNullOrEmpty(fontName)) { return; } List fontNameList = FontNameComboBox.ItemsSource as List; if (fontNameList != null && fontNameList.Count>0) { int selectIndex = -1; for(int i=0;i 0) { FontSizeTextBox.Text = ((int)newFontSize).ToString(); } else { FontSizeTextBox.Text = ((int)(newFontSize)).ToString(); } } } #endregion #region Property changed private void FontNameComboBox_SelectionChanged(object sender, SelectionChangedEventArgs e) { if(FontNameComboBox.SelectedIndex==-1) { TextFontChanged?.Invoke(this,string.Empty); return; } ComboBoxItem selectItem= FontNameComboBox.SelectedItem as ComboBoxItem; if(selectItem != null && selectItem.Content != null) { TextFontChanged?.Invoke(this, selectItem.Content.ToString()); } } private void FontStyleBox_SelectionChanged(object sender, SelectionChangedEventArgs e) { int selectIndex = Math.Max(0, FontStyleBox.SelectedIndex); switch(selectIndex) { case 0: TextBoldChanged?.Invoke(this,false); TextItalicChanged?.Invoke(this, false); break; case 1: TextBoldChanged?.Invoke(this, true); TextItalicChanged?.Invoke(this, false); break; case 2: TextBoldChanged?.Invoke(this, false); TextItalicChanged?.Invoke(this, true); break; case 3: TextBoldChanged?.Invoke(this, true); TextItalicChanged?.Invoke(this, true); break; default: break; } } private void FontSizeComboBox_SelectionChanged(object sender, SelectionChangedEventArgs e) { ComboBoxItem selectItem = FontSizeComboBox.SelectedItem as ComboBoxItem; if (selectItem != null && selectItem.Content != null) { if (int.TryParse(selectItem.Content.ToString(), out int newFontSize)) { FontSizeTextBox.Text = (newFontSize).ToString(); TextSizeChanged?.Invoke(this, newFontSize); } } } #endregion } }