2013-12-22 19:35:21 +08:00
|
|
|
<Window x:Class="WinAlfred.MainWindow"
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
2013-12-25 19:26:58 +08:00
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:winAlfred="clr-namespace:WinAlfred"
|
2013-12-22 19:35:21 +08:00
|
|
|
Title="WinAlfred" Height="80" Width="525"
|
2013-12-23 00:10:46 +08:00
|
|
|
Background="#ebebeb"
|
|
|
|
Topmost="True"
|
2013-12-22 19:35:21 +08:00
|
|
|
Loaded="MainWindow_OnLoaded"
|
|
|
|
SizeToContent="Height"
|
|
|
|
ResizeMode="NoResize"
|
|
|
|
WindowStyle="None"
|
|
|
|
WindowStartupLocation="CenterScreen"
|
|
|
|
ShowInTaskbar="False"
|
2013-12-23 00:10:46 +08:00
|
|
|
Icon="Images\ico.png"
|
2013-12-22 19:35:21 +08:00
|
|
|
>
|
2014-01-07 19:27:51 +08:00
|
|
|
<Grid>
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition ></RowDefinition>
|
|
|
|
<RowDefinition Height="2"></RowDefinition>
|
|
|
|
<RowDefinition></RowDefinition>
|
|
|
|
</Grid.RowDefinitions>
|
2014-01-12 16:28:11 +08:00
|
|
|
<TextBox AllowDrop="True" Style="{DynamicResource defaultQueryBoxStyle}" Grid.Row="0" x:Name="tbQuery" PreviewKeyDown="TbQuery_OnPreviewKeyDown" TextChanged="TextBoxBase_OnTextChanged" />
|
2014-01-07 23:27:05 +08:00
|
|
|
<Line Stroke="Blue" x:Name="progressBar" Y1="0" Y2="0" X2="100" Grid.Row="1" Height="2" StrokeThickness="1"></Line>
|
2014-01-07 19:27:51 +08:00
|
|
|
<winAlfred:ResultPanel x:Name="resultCtrl" Grid.Row="2" Margin="10 0 10 0" />
|
|
|
|
</Grid>
|
2013-12-22 19:35:21 +08:00
|
|
|
</Window>
|
|
|
|
|