PowerToys/Wox/ResultPanel.xaml

11 lines
649 B
Plaintext
Raw Normal View History

2014-01-29 11:33:24 +01:00
<UserControl x:Class="Wox.ResultPanel"
2013-12-22 12:35:21 +01:00
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
2014-01-26 10:47:58 +01:00
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d"
2013-12-22 12:35:21 +01:00
d:DesignHeight="300" d:DesignWidth="300">
2014-01-26 10:47:58 +01:00
<ScrollViewer x:Name="sv" Template="{DynamicResource ScrollViewerControlTemplate}" MaxHeight="300" VerticalScrollBarVisibility="Auto">
<StackPanel x:Name="pnlContainer"/>
2013-12-23 16:53:38 +01:00
</ScrollViewer>
2014-01-26 10:47:58 +01:00
</UserControl>