30 lines
1.2 KiB
XML
30 lines
1.2 KiB
XML
<UserControl
|
|
x:Class="FoxTube.Controls.SuggestionsQueries"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="using:FoxTube.Controls"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="450"
|
|
d:DesignWidth="350">
|
|
|
|
<Grid Background="WhiteSmoke" Name="grid">
|
|
<StackPanel Width="350">
|
|
<StackPanel Width="350" Name="searchStandby" Visibility="Visible" Margin="10">
|
|
<TextBlock Text="Loading results... Please, wait."/>
|
|
<ProgressBar IsIndeterminate="True"/>
|
|
</StackPanel>
|
|
<StackPanel Name="suggestions"/>
|
|
<StackPanel>
|
|
<StackPanel Orientation="Horizontal" Margin="10,0,10,0">
|
|
<TextBlock Foreground="Gray" Text="History"/>
|
|
<Line VerticalAlignment="Center" X1="0" X2="500" StrokeThickness="2" Stroke="Gray" Margin="5,0,0,0"/>
|
|
</StackPanel>
|
|
<StackPanel Name="history">
|
|
|
|
</StackPanel>
|
|
</StackPanel>
|
|
</StackPanel>
|
|
</Grid>
|
|
</UserControl> |