2014-01-29 10:33:24 +00:00
|
|
|
<Window x:Class="Wox.MainWindow"
|
2013-12-22 11:35:21 +00:00
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
2014-01-29 10:33:24 +00:00
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:wox="clr-namespace:Wox"
|
|
|
|
Title="Wox"
|
2013-12-22 16:10:46 +00:00
|
|
|
Topmost="True"
|
2013-12-22 11:35:21 +00:00
|
|
|
Loaded="MainWindow_OnLoaded"
|
|
|
|
SizeToContent="Height"
|
|
|
|
ResizeMode="NoResize"
|
|
|
|
WindowStyle="None"
|
2014-01-25 16:37:15 +00:00
|
|
|
WindowStartupLocation="Manual"
|
2013-12-22 11:35:21 +00:00
|
|
|
ShowInTaskbar="False"
|
2014-01-25 10:00:13 +00:00
|
|
|
Style="{DynamicResource WindowStyle}"
|
|
|
|
Icon="Images\app.png"
|
2013-12-22 11:35:21 +00:00
|
|
|
>
|
2014-01-25 16:37:15 +00:00
|
|
|
<Grid Style="{DynamicResource GridStyle}" x:Name="grid">
|
2014-01-07 11:27:51 +00:00
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition ></RowDefinition>
|
2014-01-25 10:00:13 +00:00
|
|
|
<RowDefinition></RowDefinition>
|
2014-01-07 11:27:51 +00:00
|
|
|
<RowDefinition></RowDefinition>
|
|
|
|
</Grid.RowDefinitions>
|
2014-01-25 10:00:13 +00:00
|
|
|
<TextBox AllowDrop="True" Style="{DynamicResource QueryBoxStyle}" Grid.Row="0" x:Name="tbQuery" PreviewKeyDown="TbQuery_OnPreviewKeyDown" TextChanged="TextBoxBase_OnTextChanged" />
|
|
|
|
<Line Style="{DynamicResource PendingLineStyle}" x:Name="progressBar" Y1="0" Y2="0" X2="100" Grid.Row="1" Height="2" StrokeThickness="1"></Line>
|
2014-01-29 10:33:24 +00:00
|
|
|
<wox:ResultPanel x:Name="resultCtrl" Grid.Row="2"/>
|
2014-01-07 11:27:51 +00:00
|
|
|
</Grid>
|
2014-01-25 10:00:13 +00:00
|
|
|
</Window>
|