Skip to content

Commit 6a6f3e1

Browse files
committed
Added text trimming to release notes name on About page
1 parent c1cdfee commit 6a6f3e1

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Microsoft.Toolkit.Uwp.SampleApp/Pages/About.xaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,10 @@
5151
NavigateUri="{x:Bind Url}"
5252
Style="{StaticResource AboutHyperlinkButtonStyle}">
5353
<Grid>
54-
<TextBlock Text="{x:Bind FullName}" />
54+
<TextBlock Width="150"
55+
HorizontalAlignment="Left"
56+
TextTrimming="CharacterEllipsis"
57+
Text="{x:Bind FullName}" />
5558
<TextBlock HorizontalAlignment="Right"
5659
Opacity="0.5"
5760
Text="{x:Bind Published.ToString('MMM d', {x:Null})}" />

0 commit comments

Comments
 (0)