vote up 0 vote down star

I have xaml that lookes like this

<ListBox>
<ListBox.ItemTemplate>
	<DataTemplate>
		<StackPanel>
			<TextBlock Text="{Binding Name}" />
			<StackPanel Orientation="Vertical" x:Name="contentPanel" >
			Content goes here...
			</StackPanel>
		</StackPanel>
	</DataTemplate>
</ListBox.ItemTemplate>

The listbox binds to an object with a bool property called ShowContent. How do I get silverlight to hide the contentPanel if the object with ShowContent is false?

flag

73% accept rate

1 Answer

vote up 2 vote down check

Write a BoolToVisibility IValueConveter and use it to bind to the Visibility property of your contentPanel

<StackPanel Visibility="{Binding YourBoolProperty, Converter={StaticResource boolToVisibilityResourceRef ..../>

You can find a BoolToVisibility pretty easy anywhere.

Check IValueConveter if you are new to that. http://msdn.microsoft.com/en-us/library/system.windows.data.ivalueconverter.aspx

link|flag
There is a BooleanToVisibilityConverter which is part of the framework. – gcores Mar 24 at 23:53
I have tried that and it doen't work. It will probably work in wpf but not in silverlight. – Emil C Mar 25 at 7:36
:) It should work in Silverlight - Here is a quick search result jeff.wilcox.name/2008/07/… – Jobi Joy Mar 25 at 8:57
Tried it again and it worked. – Emil C Mar 25 at 22:01

Your Answer

Get an OpenID
or

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