问题
I am trying to develop a modern wpf application using the MUI package. However I do not wish for the back button to be present and I tried to follow the steps mentioned in this link but it is not working.
I am getting errors as controls not defined in namespace, etc. Basically, I cannot get the code to compile. What am I doing wrong?
回答1:
Because the TargetType
property in the Style
references controls from the ModernUI library, you need to add the XML namespace for the ModernUI controls in the ResourceDictionary
containing the Style
.
I don't know what that namespace is, but need to add something like this:
xmlns:mui="clr-namespace:FirstFloor.ModernUI.Windows.Controls;assembly=FirstFloor.ModernUI"
来源:https://stackoverflow.com/questions/32105137/remove-back-button-in-modernui-plugin-for-wpf