123456789101112131415161718192021222324252627 |
- <UserControl x:Class="PDF_Office.Views.Tools.TextEditToolContent"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:PDF_Office.Views.Tools"
- xmlns:prism="http://prismlibrary.com/"
- prism:ViewModelLocator.AutoWireViewModel="True"
- xmlns:customControl ="clr-namespace:PDF_Office.CustomControl"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800">
- <Grid >
- <StackPanel Orientation="Horizontal" HorizontalAlignment="Center">
- <customControl:CustomIconToggleBtn x:Name="BtnAddText" Tag="Text" Style="{StaticResource ToggleBtnViewModeStyle}" Foreground="Black" ContentStringFormat="156"
- Command="{Binding AddContentCommand}" CommandParameter="{Binding ElementName=BtnAddText}"
- >
- <TextBlock Text="添加文本"/>
- </customControl:CustomIconToggleBtn>
- <customControl:CustomIconToggleBtn x:Name="BtnAddImage" Tag="Image" Style="{StaticResource ToggleBtnViewModeStyle}" Foreground="Black" ContentStringFormat="156"
- Command="{Binding AddContentCommand}" CommandParameter="{Binding ElementName=BtnAddImage}"
- >
- <TextBlock Text="添加图像"/>
- </customControl:CustomIconToggleBtn>
- </StackPanel>
- </Grid>
- </UserControl>
|