Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The TextBlock.Padding value behaves unexpectedly. #9760

Closed
Tamilarasan-Paranthaman opened this issue Jun 27, 2024 · 2 comments
Closed

The TextBlock.Padding value behaves unexpectedly. #9760

Tamilarasan-Paranthaman opened this issue Jun 27, 2024 · 2 comments
Labels
bug Something isn't working

Comments

@Tamilarasan-Paranthaman

Describe the bug

The Padding value set on the TextBlock was not applied properly when TextBlock.TextWrapping was set to Wrap.

<StackPanel Orientation="Vertical" HorizontalAlignment="Center" VerticalAlignment="Center">
    <Border Background="Red">
        <TextBlock Text="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

  1. Create a new WinUI Desktop app.
  2. Replace MainWindow XAML with the above.
  3. 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.

image

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

@Tamilarasan-Paranthaman Tamilarasan-Paranthaman added the bug Something isn't working label Jun 27, 2024
@microsoft-github-policy-service microsoft-github-policy-service bot added the needs-triage Issue needs to be triaged by the area owners label Jun 27, 2024
Copy link

Hi I'm an AI powered bot that finds similar issues based off the issue title.

Please view the issues below to see if they solve your problem, and if the issue describes your problem please consider closing this one. Thank you!

Open similar issues:

Closed similar issues:

Note: You can give me feedback by thumbs upping or thumbs downing this comment.

@codendone
Copy link
Contributor

Yes, this is working as expected.

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.

@microsoft-github-policy-service microsoft-github-policy-service bot removed the needs-triage Issue needs to be triaged by the area owners label Jun 27, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants