CPDFTextStyleUI.xaml 1.6 KB

12345678910111213141516171819202122232425262728
  1. <UserControl x:Class="compdfkit_tools.Edit.CPDFTextStyleUI"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:compdfkit_tools.Edit"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800">
  9. <StackPanel Name="TextStyleUI">
  10. <Grid>
  11. <TextBlock VerticalAlignment="Center" Margin="0,10,10,0">字体样式:</TextBlock>
  12. </Grid>
  13. <StackPanel Orientation="Horizontal" Margin="0,10,0,0">
  14. <ComboBox Name="FontNameComboBox" Width="90" FontSize="14" SelectionChanged="FontNameComboBox_SelectionChanged">
  15. <ComboBoxItem Content="Courier"></ComboBoxItem>
  16. <ComboBoxItem Content="Helvetica"></ComboBoxItem>
  17. <ComboBoxItem Content="Times"></ComboBoxItem>
  18. </ComboBox>
  19. <ToggleButton Name="FontBoldBtn" FontSize="14" FontWeight="Bold" Width="40" Margin="10,0,10,0" BorderThickness="0"
  20. Checked="FontBoldBtn_CheckChanged" Unchecked="FontBoldBtn_CheckChanged">B</ToggleButton>
  21. <ToggleButton Name="FontItalicBtn" FontSize="14" FontWeight="Bold" Width="40" BorderThickness="0" FontStyle="Italic"
  22. Checked="FontItalicBtn_CheckChanged" Unchecked="FontItalicBtn_CheckChanged">U</ToggleButton>
  23. </StackPanel>
  24. </StackPanel>
  25. </UserControl>