19 lines
999 B
XML
19 lines
999 B
XML
<UserControl x:Class="SPC.Kiosk.Popup.VirtureMobileHappyCoupons"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:uc ="clr-namespace:SPC.Kiosk.Common;assembly=SPC.Kiosk.Common"
|
|
xmlns:local="clr-namespace:SPC.Kiosk.Popup"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="340" d:DesignWidth="1140" >
|
|
<Grid x:Name="CouponGrid" Width="1140" Height="340">
|
|
<ScrollViewer x:Name="MainScroll" VerticalScrollBarVisibility="Hidden" HorizontalScrollBarVisibility="Disabled">
|
|
<StackPanel x:Name="CouponStack"
|
|
VerticalAlignment="Top"
|
|
Orientation="Vertical">
|
|
</StackPanel>
|
|
</ScrollViewer>
|
|
</Grid>
|
|
</UserControl>
|