Archived
1
0
This repository has been archived on 2026-04-22. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
FoxTube/FoxTube/Controls/SuggestionsQueries.xaml
T
Michael Gordeev adfc893cf6 Development 3
2018-06-30 23:06:15 +03:00

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>