1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <UserControl
- x:Class="PDF_Master.Views.TipContent.LinkAnnotTip"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:TipContent="clr-namespace:PDF_Master.ViewModels.TipContent"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:PDF_Master.Views.TipContent"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:prism="http://prismlibrary.com/"
- d:DataContext="{d:DesignInstance Type=TipContent:LinkAnnotTipViewModel}"
- d:DesignHeight="50"
- d:DesignWidth="760"
- prism:ViewModelLocator.AutoWireViewModel="True"
- mc:Ignorable="d">
- <Border Margin="0,0,17,0" Background=" #BDDFFD">
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="35" />
- <ColumnDefinition Width="*" />
- </Grid.ColumnDefinitions>
- <Grid
- Grid.Column="0"
- Width="16"
- Height="16"
- Margin="9,4">
- <Ellipse
- Width="16"
- Height="16"
- Fill="{StaticResource color.icon.base.state.info}" />
- <Path Data="M7.25 4V5.5H8.75L8.75 4H7.25ZM7.25 7V12H8.75V7H7.25Z" Fill="White" />
- </Grid>
- <TextBlock
- x:Name="DrawTipsText"
- Grid.Column="1"
- Margin="0,4,12,4"
- Padding="4,2,4,2"
- FontSize="14"
- Foreground="#252629"
- Text="To select a target page, you can turn to this page first, then click or box area on the page."
- TextWrapping="Wrap" />
- </Grid>
- </Border>
- </UserControl>
|