TextFillProperty.xaml 752 B

12345678910111213141516171819
  1. <UserControl
  2. x:Class="PDF_Master.Views.FillAndSign.PropertyPanel.TextFillProperty"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:PDF_Master.Views.FillAndSign.PropertyPanel"
  7. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  8. xmlns:prism="http://prismlibrary.com/"
  9. d:DesignHeight="450"
  10. d:DesignWidth="260"
  11. prism:ViewModelLocator.AutoWireViewModel="True"
  12. mc:Ignorable="d">
  13. <Grid Margin="16">
  14. <TextBlock
  15. FontSize="16"
  16. LineHeight="24"
  17. Text="文本" />
  18. </Grid>
  19. </UserControl>