Skip to content

Commit e113b8e

Browse files
Merge pull request #4451 from zateutsch/4432-release-notes-text-overlap
Resolve issue #4432 with release note text overlap
2 parents d34ab57 + c12c31b commit e113b8e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,11 @@
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}"
58+
ToolTipService.ToolTip="{x:Bind FullName}"/>
5559
<TextBlock HorizontalAlignment="Right"
5660
Opacity="0.5"
5761
Text="{x:Bind Published.ToString('MMM d', {x:Null})}" />

0 commit comments

Comments
 (0)