File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Microsoft.Toolkit.Uwp.SampleApp/SamplePages/ListDetailsView Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 1616 <DataTemplate>
1717 <StackPanel Margin="0,8">
1818 <TextBlock Text="{Binding From}"
19- Style="{ThemeResource SubtitleTextBlockStyle}"/>
19+ Style="{StaticResource SubtitleTextBlockStyle}"/>
2020 <TextBlock Text="{Binding Subject}"
21- Style="{ThemeResource BodyTextBlockStyle}"
21+ Style="{StaticResource BodyTextBlockStyle}"
2222 Foreground="{ThemeResource Brush-Blue-01}"
2323 MaxLines="1"/>
2424 <TextBlock Text="{Binding Body}"
25- Style="{ThemeResource BodyTextBlockStyle}"
25+ Style="{StaticResource BodyTextBlockStyle}"
2626 Opacity=".6"
2727 MaxLines="1"/>
2828 </StackPanel>
3737 Height="50"
3838 CornerRadius="999"/>
3939 <TextBlock Text="{Binding From}"
40- Style="{ThemeResource SubtitleTextBlockStyle}"
40+ Style="{StaticResource SubtitleTextBlockStyle}"
4141 RelativePanel.RightOf="FromEllipse"
4242 Margin="12,-6,0,0"/>
4343 <TextBlock x:Name="SubjectLine"
4444 Text="{Binding Subject}"
45- Style="{ThemeResource BodyTextBlockStyle}"
45+ Style="{StaticResource BodyTextBlockStyle}"
4646 RelativePanel.Below="FromEllipse"
4747 Margin="0,12,0,0"/>
4848 <TextBlock x:Name="Body"
4949 Text="{Binding Body}"
50- Style="{ThemeResource BodyTextBlockStyle}"
50+ Style="{StaticResource BodyTextBlockStyle}"
5151 TextWrapping="Wrap"
5252 RelativePanel.Below="SubjectLine"
5353 Margin="0,12,0,0"/>
You can’t perform that action at this time.
0 commit comments