spc-kiosk-pb/Kiosk/Popup/SPC.Kiosk.Popup/HappyAppCoupons.xaml

19 lines
989 B
Plaintext
Raw Normal View History

2019-06-16 05:12:09 +00:00
<UserControl x:Class="SPC.Kiosk.Popup.HappyAppCoupons"
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>