PowerToys/WinAlfred/MainWindow.xaml

21 lines
868 B
Plaintext
Raw Normal View History

2013-12-22 12:35:21 +01:00
<Window x:Class="WinAlfred.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:winAlfred="clr-namespace:WinAlfred"
2013-12-22 12:35:21 +01:00
Title="WinAlfred" Height="80" Width="525"
2013-12-22 17:10:46 +01:00
Background="#ebebeb"
Topmost="True"
2013-12-22 12:35:21 +01:00
Loaded="MainWindow_OnLoaded"
SizeToContent="Height"
ResizeMode="NoResize"
WindowStyle="None"
WindowStartupLocation="CenterScreen"
ShowInTaskbar="False"
2013-12-22 17:10:46 +01:00
Icon="Images\ico.png"
2013-12-22 12:35:21 +01:00
>
<DockPanel>
2013-12-24 17:21:54 +01:00
<TextBox Style="{DynamicResource defaultQueryBoxStyle}" DockPanel.Dock="Top" x:Name="tbQuery" PreviewKeyDown="TbQuery_OnPreviewKeyDown" TextChanged="TextBoxBase_OnTextChanged" />
2013-12-22 17:10:46 +01:00
<winAlfred:ResultPanel x:Name="resultCtrl" Margin="10 0 10 0" />
2013-12-22 12:35:21 +01:00
</DockPanel>
</Window>