Skip to main content

All Questions

0 votes
2 answers
441 views

ListView inside ListView + control.Visibility

I'm creating a questionnaire app. My way of doing this is to create a ListView which contains question text and another ListView which contains list af answers(as RadioButtons). The problem came when ...
MajkeloDev's user avatar
  • 1,661
1 vote
0 answers
208 views

Visibility Binding crashes on select workstations

I have a WPF application that has a visibility set on a border. The binding on the border is: <Border Visibility="{Binding IsThisVisible, Converter={StaticResource BoolToVisibility}}" > &...
Brandon's user avatar
  • 11
5 votes
4 answers
4k views

ContentPresenter Visibility binding inside Grid not working?

I have a following grid: <Grid> <Grid.RowDefinitions> <RowDefinition Height="Auto"/> <RowDefinition Height="*"/> <RowDefinition Height="Auto"/&...
Joe's user avatar
  • 2,591
2 votes
1 answer
409 views

Hiding elements in a GridView (used as a ListView's view) completely?

I have a ListView and a button. Now, when I press the button I want to display only the elements that meet the required criteria. I'm using a converter on the visibility of the items, but if I return ...
NLuburić's user avatar
  • 922
2 votes
1 answer
509 views

Using Converter with image within datagrid

I'm stumbling on this data converter stuff, especially with relation to multiple rows and dynamically show/hide an image. Lets take a master/detail data perspective. On a given view (presentation), ...
DRapp's user avatar
  • 48k