0

Fluent リボンで Backstage コントロールをプログラムで開くことは可能ですか?

4

2 に答える 2

0

Backstage の IsOpen プロパティの設定を修正

于 2012-03-19T07:49:03.207 に答える
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 に答える