カスタムの RibbonWindow をデフォルトのシェル ウィンドウとして設定する手順を教えてください。このウィンドウはモジュールから取得しています。登録して初期化したもの。
protected override DependencyObject CreateShell()
{
return new xamRibbonWindow() as DependencyObject;
}
protected override void InitializeShell()
{
base.InitializeShell();
App.Current.MainWindow = (xamRibbonWindow)Shell;
App.Current.MainWindow.Show();
}