You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Padding value set on the TextBlock was not applied properly when TextBlock.TextWrapping was set to Wrap.
<StackPanelOrientation="Vertical"HorizontalAlignment="Center"VerticalAlignment="Center">
<BorderBackground="Red">
<TextBlockText="Maria Anders Ant Fuller Maria Anders Ant Fuller Thomas Hardy Tim Adams Hanna Moos Martin King"TextWrapping="Wrap"Height="50"Padding="15,15,15,15"Width="250"/>
</Border>
</StackPanel>
Steps to reproduce the bug
Create a new WinUI Desktop app.
Replace MainWindow XAML with the above.
Run the app in VS and see the TextBlock padding.
Expected behavior
It appears that the left and bottom padding was not applied to the TextBlock. The same code works fine with TextBox instead of TextBlock.
I have attached the image difference for both TextBlock (red background) and TextBox (green background) with the same configuration.
I'm not sure if it is a bug or if it works as intended.
Screenshots
No response
NuGet package version
WinUI 3 - Windows App SDK 1.5.4: 1.5.240607001
Windows version
Windows 11 (22H2): Build 22621
Additional context
No response
The text was updated successfully, but these errors were encountered:
Left padding is working correctly in your image, otherwise the text would be tight against the left side of the red rectangle. (There is more space on the right side due to where the text wrapped.)
Bottom padding doesn't really get used. The Padding property impacts where the text is positioned (top+left) and where it wraps (right). The text with those layout constraints then gets drawn. TextBlock.Padding does not apply a clip if there is too much text.
Describe the bug
The
Padding
value set on theTextBlock
was not applied properly whenTextBlock.TextWrapping
was set toWrap
.Steps to reproduce the bug
Expected behavior
It appears that the
left
andbottom
padding was not applied to theTextBlock.
The same code works fine with TextBox instead of TextBlock.I have attached the image difference for both TextBlock (red background) and TextBox (green background) with the same configuration.
I'm not sure if it is a bug or if it works as intended.
Screenshots
No response
NuGet package version
WinUI 3 - Windows App SDK 1.5.4: 1.5.240607001
Windows version
Windows 11 (22H2): Build 22621
Additional context
No response
The text was updated successfully, but these errors were encountered: