0
Fluent Ribbon中是否可以通過編程方式打開Backstage控件?流利的絲帶後臺打開?
Fluent Ribbon中是否可以通過編程方式打開Backstage控件?流利的絲帶後臺打開?
Resoved設置後臺
的IsOpen屬性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;
}