流利的丝带后台开口?

时间:2012-03-16 09:47:39

标签: ribbon fluent ribbon-control

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

2 个答案:

答案 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;
}