Add progress bar

This commit is contained in:
qianlifeng
2014-01-07 19:27:51 +08:00
parent 13f00edefd
commit a5f3359d32
5 changed files with 106 additions and 18 deletions

View File

@@ -12,9 +12,15 @@
ShowInTaskbar="False"
Icon="Images\ico.png"
>
<DockPanel>
<TextBox Style="{DynamicResource defaultQueryBoxStyle}" DockPanel.Dock="Top" x:Name="tbQuery" PreviewKeyDown="TbQuery_OnPreviewKeyDown" TextChanged="TextBoxBase_OnTextChanged" />
<winAlfred:ResultPanel x:Name="resultCtrl" Margin="10 0 10 0" />
</DockPanel>
<Grid>
<Grid.RowDefinitions>
<RowDefinition ></RowDefinition>
<RowDefinition Height="2"></RowDefinition>
<RowDefinition></RowDefinition>
</Grid.RowDefinitions>
<TextBox Style="{DynamicResource defaultQueryBoxStyle}" Grid.Row="0" x:Name="tbQuery" PreviewKeyDown="TbQuery_OnPreviewKeyDown" TextChanged="TextBoxBase_OnTextChanged" />
<Line Stroke="Blue" x:Name="progressBar" X2="100" Grid.Row="1" Height="2" StrokeThickness="1"></Line>
<winAlfred:ResultPanel x:Name="resultCtrl" Grid.Row="2" Margin="10 0 10 0" />
</Grid>
</Window>