0

是否可以在 Fluent Ribbon 中以编程方式打开 Backstage 控件?

4

2 回答 2

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;
}
于 2013-03-16T21:34:50.647 回答
0

解决了 Backstage 的 IsOpen 属性设置

于 2012-03-19T07:49:03.207 回答