2014-01-29 18:33:24 +08:00
|
|
|
<Window x:Class="Wox.MainWindow"
|
2013-12-22 19:35:21 +08:00
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
2014-01-29 18:33:24 +08:00
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:wox="clr-namespace:Wox"
|
|
|
|
Title="Wox"
|
2013-12-23 00:10:46 +08:00
|
|
|
Topmost="True"
|
2013-12-22 19:35:21 +08:00
|
|
|
Loaded="MainWindow_OnLoaded"
|
|
|
|
SizeToContent="Height"
|
|
|
|
ResizeMode="NoResize"
|
|
|
|
WindowStyle="None"
|
2014-01-26 00:37:15 +08:00
|
|
|
WindowStartupLocation="Manual"
|
2013-12-22 19:35:21 +08:00
|
|
|
ShowInTaskbar="False"
|
2014-01-25 18:00:13 +08:00
|
|
|
Style="{DynamicResource WindowStyle}"
|
|
|
|
Icon="Images\app.png"
|
2013-12-22 19:35:21 +08:00
|
|
|
>
|
2014-03-24 00:08:56 +08:00
|
|
|
<Window.Resources>
|
|
|
|
<ResourceDictionary Source="/PresentationFramework.Classic,Version=3.0.0.0,Culture=neutral,PublicKeyToken=31bf3856ad364e35,processorArchitecture=MSIL;component/themes/Classic.xaml"/>
|
|
|
|
</Window.Resources>
|
2014-03-18 20:42:23 +08:00
|
|
|
<Border Style="{DynamicResource WindowBorderStyle}" MouseDown="Border_OnMouseDown">
|
2014-03-20 21:41:30 +08:00
|
|
|
<StackPanel Orientation="Vertical">
|
2014-03-15 00:17:37 +08:00
|
|
|
<TextBox 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>
|
|
|
|
<wox:ResultPanel x:Name="resultCtrl" Grid.Row="2"/>
|
2014-03-20 21:41:30 +08:00
|
|
|
</StackPanel>
|
2014-03-15 00:17:37 +08:00
|
|
|
</Border>
|
2014-01-25 18:00:13 +08:00
|
|
|
</Window>
|