2014-01-29 10:33:24 +00:00
|
|
|
<UserControl x:Class="Wox.ResultPanel"
|
2013-12-22 11:35:21 +00:00
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
2014-01-26 09:47:58 +00: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 11:35:21 +00:00
|
|
|
d:DesignHeight="300" d:DesignWidth="300">
|
2014-01-26 09:47:58 +00:00
|
|
|
<ScrollViewer x:Name="sv" Template="{DynamicResource ScrollViewerControlTemplate}" MaxHeight="300" VerticalScrollBarVisibility="Auto">
|
|
|
|
<StackPanel x:Name="pnlContainer"/>
|
2013-12-23 15:53:38 +00:00
|
|
|
</ScrollViewer>
|
2014-01-26 09:47:58 +00:00
|
|
|
</UserControl>
|