12345678910111213141516171819202122232425262728293031 |
- <UserControl
- x:Class="PDF_Master.Views.TipContent.EnterReadModeTip"
- 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.TipContent"
- xmlns:mainpage="clr-namespace:PDF_Master.Strings.MainPage"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:prism="http://prismlibrary.com/"
- d:DesignHeight="450"
- d:DesignWidth="800"
- prism:ViewModelLocator.AutoWireViewModel="True"
- mc:Ignorable="d">
- <Grid>
- <Border
- Width="316"
- Height="40"
- VerticalAlignment="Top"
- Background="{StaticResource color.sys.layout.dark.bg}"
- CornerRadius="4">
- <TextBlock
- x:Name="ReadModelTip1"
- Width="316"
- Padding="11"
- HorizontalAlignment="Left"
- Foreground="#FFFFFFFF"
- Text="{x:Static mainpage:MainPage.GlobalTip_ESCReadMode}"
- TextAlignment="Center" />
- </Border>
- </Grid>
- </UserControl>
|