WpfMdict / csharp /mdict /Views /HistoryView.xaml
fasdfsa's picture
init
07bbbbf
raw
history blame contribute delete
952 Bytes
<UserControl x:Class="mdict.Views.HistoryView"
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"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800">
<Grid Background="#F0F2F5">
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
<TextBlock Text="🕒" FontSize="48" HorizontalAlignment="Center" Margin="0,0,0,20"/>
<TextBlock Text="History" FontSize="24" FontWeight="Bold" HorizontalAlignment="Center" Foreground="#333"/>
<TextBlock Text="View your recent searches" FontSize="14" HorizontalAlignment="Center" Foreground="#666" Margin="0,10,0,0"/>
</StackPanel>
</Grid>
</UserControl>