WPF: How to make empty TextBlock not to occupy space?

后端 未结 2 1994
一个人的身影
一个人的身影 2021-02-20 09:28

Let\'s say that I have a simple layout such as this:


  
  

        
2条回答
  •  不要未来只要你来
    2021-02-20 09:51

    You want to set the visibility of the textbox to "Collapsed".

    Visibility can be either:
    Visible - Self explanatory
    Hidden - Invisible but still takes up space
    Collapsed - Invisible and takes up no space

    Edit: You should probably set up a trigger, like so:

    
        
    
    

提交回复
热议问题