Fluent リボンで Backstage コントロールをプログラムで開くことは可能ですか?
質問する
1238 次
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 に答える