12345678910111213141516171819 |
- <UserControl
- x:Class="PDF_Master.Views.FillAndSign.PropertyPanel.TextFillProperty"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:PDF_Master.Views.FillAndSign.PropertyPanel"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:prism="http://prismlibrary.com/"
- d:DesignHeight="450"
- d:DesignWidth="260"
- prism:ViewModelLocator.AutoWireViewModel="True"
- mc:Ignorable="d">
- <Grid Margin="16">
- <TextBlock
- FontSize="16"
- LineHeight="24"
- Text="文本" />
- </Grid>
- </UserControl>
|