是否可以在Fluent Ribbon中以编程方式打开Backstage控件?
答案 0 :(得分:0)
Resstd设置Backstage的IsOpen属性
答案 1 :(得分:0)
private void ButtonBase_OnClick(object sender, RoutedEventArgs e)
{
//execute the command from the View Model
((Fluent.Button)sender).Command.Execute(null);
//close the backstage
this.Menu.IsOpen = false;
}