how to remove the color in textbox?

mc 6,596 Reputation points
2023-06-12T12:01:51.5533333+00:00

enter image description here

Windows development | Windows App SDK
0 comments No comments
{count} votes

Answer accepted by question author
  1. Castorix31 91,531 Reputation points
    2023-06-12T15:40:13.33+00:00

    You can remove the borders, like :

                    <TextBox Width="150" Height="40" >
                        <TextBox.Resources>                      
                            <Thickness x:Key="TextControlBorderThemeThicknessFocused">0,0,0,0</Thickness>
                            <Thickness x:Key="TextControlBorderThemeThickness">0,0,0,0</Thickness>
                        </TextBox.Resources>
                    </TextBox>
    
    1 person found this answer helpful.
    0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.