|
@@ -7,6 +7,7 @@
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
d:DesignHeight="450"
|
|
|
d:DesignWidth="800"
|
|
|
+ Background="{StaticResource color.sys.layout.mg}"
|
|
|
SizeChanged="UserControl_SizeChanged"
|
|
|
mc:Ignorable="d">
|
|
|
<UserControl.Resources>
|
|
@@ -17,8 +18,8 @@
|
|
|
</ResourceDictionary.MergedDictionaries>
|
|
|
<DataTemplate x:Key="PromotionDataTemplate">
|
|
|
<StackPanel
|
|
|
- Margin="0,10,0,10"
|
|
|
- Background="White"
|
|
|
+ Height="32"
|
|
|
+ Background="Transparent"
|
|
|
Cursor="Hand"
|
|
|
Orientation="Horizontal">
|
|
|
<Image
|
|
@@ -27,74 +28,83 @@
|
|
|
Margin="0,0,10,0"
|
|
|
Source="{Binding ImagePath}" />
|
|
|
<TextBlock
|
|
|
+ VerticalAlignment="Center"
|
|
|
FontSize="14"
|
|
|
- Foreground="#6B6F7D"
|
|
|
+ Foreground="{StaticResource color.sys.text.neutral.lv2}"
|
|
|
Text="{Binding Content}" />
|
|
|
</StackPanel>
|
|
|
</DataTemplate>
|
|
|
</ResourceDictionary>
|
|
|
</UserControl.Resources>
|
|
|
<ScrollViewer VerticalScrollBarVisibility="Auto">
|
|
|
- <StackPanel Background="{StaticResource color.sys.layout.mg}">
|
|
|
- <Expander
|
|
|
- x:Name="PDFProSeriesExpander"
|
|
|
- Margin="20,20,0,0"
|
|
|
- Style="{StaticResource PromotionExpanderStyle}">
|
|
|
- <Expander.Header>
|
|
|
- <Grid Name="GridHeader" HorizontalAlignment="Center">
|
|
|
- <TextBlock
|
|
|
- FontSize="12"
|
|
|
- Foreground="#8F96A7"
|
|
|
- Text="PDF Pro Series" />
|
|
|
- </Grid>
|
|
|
- </Expander.Header>
|
|
|
- <Border CornerRadius="4">
|
|
|
- <Grid Name="GroupPDFProSeries">
|
|
|
- <ListView
|
|
|
- x:Name="PDFProListview"
|
|
|
- MinWidth="0"
|
|
|
- HorizontalAlignment="Stretch"
|
|
|
- BorderThickness="0"
|
|
|
- ItemContainerStyle="{StaticResource EmptyListViewItem}"
|
|
|
- ItemTemplate="{StaticResource PromotionDataTemplate}" />
|
|
|
- </Grid>
|
|
|
- </Border>
|
|
|
+ <Grid>
|
|
|
+ <StackPanel Margin="0,0,0,252">
|
|
|
+ <Expander
|
|
|
+ x:Name="PDFProSeriesExpander"
|
|
|
+ Margin="20,20,0,0"
|
|
|
+ IsExpanded="True"
|
|
|
+ Style="{StaticResource PromotionExpanderStyle}">
|
|
|
+ <Expander.Header>
|
|
|
+ <Grid
|
|
|
+ Name="GridHeader"
|
|
|
+ Height="32"
|
|
|
+ HorizontalAlignment="Center">
|
|
|
+ <TextBlock VerticalAlignment="Center" Text="PDF Pro Series" />
|
|
|
+ </Grid>
|
|
|
+ </Expander.Header>
|
|
|
+ <Border CornerRadius="4">
|
|
|
+ <Grid Name="GroupPDFProSeries">
|
|
|
+ <ListView
|
|
|
+ x:Name="PDFProListview"
|
|
|
+ MinWidth="0"
|
|
|
+ HorizontalAlignment="Stretch"
|
|
|
+ Background="Transparent"
|
|
|
+ BorderThickness="0"
|
|
|
+ ItemContainerStyle="{StaticResource EmptyListViewItem}"
|
|
|
+ ItemTemplate="{StaticResource PromotionDataTemplate}" />
|
|
|
+ </Grid>
|
|
|
+ </Border>
|
|
|
|
|
|
- </Expander>
|
|
|
+ </Expander>
|
|
|
|
|
|
- <Expander
|
|
|
- x:Name="OthersExpander"
|
|
|
- Margin="20,20,0,0"
|
|
|
- Style="{StaticResource PromotionExpanderStyle}">
|
|
|
- <Expander.Header>
|
|
|
- <Grid Name="GridHeaderOthers" HorizontalAlignment="Center">
|
|
|
- <TextBlock
|
|
|
- FontSize="12"
|
|
|
- Foreground="#8F96A7"
|
|
|
- Text="Others" />
|
|
|
- </Grid>
|
|
|
- </Expander.Header>
|
|
|
- <Border CornerRadius="4">
|
|
|
- <Grid Name="GridGroupOthers">
|
|
|
- <ListView
|
|
|
- x:Name="OthersListview"
|
|
|
- MinWidth="0"
|
|
|
- HorizontalAlignment="Stretch"
|
|
|
- BorderThickness="0"
|
|
|
- ItemContainerStyle="{StaticResource EmptyListViewItem}"
|
|
|
- ItemTemplate="{StaticResource PromotionDataTemplate}" />
|
|
|
- </Grid>
|
|
|
- </Border>
|
|
|
+ <Expander
|
|
|
+ x:Name="OthersExpander"
|
|
|
+ Margin="20,8,0,0"
|
|
|
+ IsExpanded="True"
|
|
|
+ Style="{StaticResource PromotionExpanderStyle}">
|
|
|
+ <Expander.Header>
|
|
|
+ <Grid
|
|
|
+ Name="GridHeaderOthers"
|
|
|
+ Height="32"
|
|
|
+ HorizontalAlignment="Center">
|
|
|
+ <TextBlock VerticalAlignment="Center" Text="Others" />
|
|
|
+ </Grid>
|
|
|
+ </Expander.Header>
|
|
|
+ <Border CornerRadius="4">
|
|
|
+ <Grid Name="GridGroupOthers">
|
|
|
+ <ListView
|
|
|
+ x:Name="OthersListview"
|
|
|
+ MinWidth="0"
|
|
|
+ HorizontalAlignment="Stretch"
|
|
|
+ Background="Transparent"
|
|
|
+ BorderThickness="0"
|
|
|
+ ItemContainerStyle="{StaticResource EmptyListViewItem}"
|
|
|
+ ItemTemplate="{StaticResource PromotionDataTemplate}" />
|
|
|
+ </Grid>
|
|
|
+ </Border>
|
|
|
|
|
|
- </Expander>
|
|
|
+ </Expander>
|
|
|
+
|
|
|
+ </StackPanel>
|
|
|
<Rectangle
|
|
|
x:Name="promtionRect"
|
|
|
Width="216"
|
|
|
Height="216"
|
|
|
- Margin="0,8,0,0"
|
|
|
+ Margin="0,23"
|
|
|
+ VerticalAlignment="Bottom"
|
|
|
Fill="#EBEBEB"
|
|
|
RadiusX="8"
|
|
|
RadiusY="8" />
|
|
|
- </StackPanel>
|
|
|
+ </Grid>
|
|
|
</ScrollViewer>
|
|
|
</UserControl>
|