Skip to main content

All Questions

0 votes
2 answers
1k views

Visibility of one user control to another user control

private void Button_Click(object sender, RoutedEventArgs e) { int selectedValue = (int)comboSelection.SelectedValue; if (selectedValue == 8) { ...
user avatar
0 votes
1 answer
62 views

UserControl hidden, Zindex misused?

In my main page I try to show a list of stuff, and on this stuff a userControl as an overlay. In fact I never see it. (In the design view, my userControl is oaky) XAML MainPage <Grid> ...
Adrien Blaizot's user avatar
0 votes
2 answers
4k views

User control is not hiding in wpf

I created a UserControl like Popup which is displayed when user clicks on menu item. If user clicks side that user control should be collapsed. It works fine for me when user clicks side other than ...
user1934329's user avatar
0 votes
1 answer
617 views

setting data context of silverlight user control leaves the control as always visible

I have a 'searchwin.xaml' user control in a Silverlight page called Mainpage.xaml. 'searchwin' has its own viewmodel 'searhwinVM'. I have set searchwin's datacontext to its viewmodel in the Mainpage ...
user20358's user avatar
  • 14.6k