WPF Visibility Converter not Firing
问题 I can't seem to get my visibilty converter to work. I think the issue is that i'm setting the relevant property in the constructor, so it's not picking it up down the line. Code is below, any suggestions as to how I can fix this? MainWindowViewModel: (this is the main page; clicking a button will open a second window) var newWindow = new SecondaryWindow { Title = title, DataContext = new SecondaryWindowViewModel{MyData = data, ShowAdditionalColumns = false} }; newWindow.Show(); Secondary