vote up 0 vote down star

I am trying to hide the TextBlock and Label which are placed inside a grid like so:

<TextBlock Grid.Column="3" Grid.Row="2" HorizontalAlignment="Center" VerticalAlignment="Center" Visibility="Hidden">Text inside TextBlock</TextBlock>
<Label Grid.Column="4" Grid.Row="2" HorizontalAlignment="Center" Visibility="Hidden">Text inside Label</Label>

But the text does not disappear. Any ideas why that is?

flag

UPDATE: Damn, it does work when you run it, it was just the designer that does not display it correctly. – Hermann Mar 27 at 16:23

3 Answers

vote up 1 vote down check

Never mind, it does work when you run it, it was just the designer that does not display it correctly.

link|flag
Maybe delete the question then? – Kent Boogaart Mar 27 at 20:49
I tried, but won't let me because someone has voted up. – Hermann Apr 8 at 14:49
Shouldn't delete this stuff. This is knowledge to be shared! – Peter Lillevold Oct 5 at 12:45
vote up -2 vote down

You could also set with and height == 0

link|flag
vote up 0 vote down

Try Visibility.Collapsed

<TextBlock Visibility="Collapsed">
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.