■87144 / inTopicNo.1) |
親WindowのContentControlを切り替えたい |
□投稿者/ りり (1回)-(2018/04/16(Mon) 10:01:04)
|
分類:[.NET 全般]
目を通していただき、ありがとうございます。
WPF Prism.Regions IRegionManager C#
親WindowにあるContentControlに 子ページAを表示してある状態で、子ページAのボタンをクリックしたら 親WindowにあるContentControlに子ページBを表示したいのですが可能でしょうか? 可能な場合、どのようにしたらよいか、ご教授をお願いいたします。
※親Windowから子ページAをContentControlに表示する方法については http://blog.okazuki.jp/entry/2014/09/11/224645 ここを参考に作成してあります。
■親Windows <Window x:Class="UI.Views.Shell" ** 省略> <Grid> <ContentControl prism:RegionManager.RegionName="ContentRegion" /> </Grid> </Window>
■子ページA <UserControl x:Class="UI.Views.PageA" ** 省略> <Grid> <Button Content="ButtonA" VerticalAlignment="Top" Width="75" Command="{Binding ButtonACommand}"/> </Grid> </UserControl>
■子ページB <UserControl x:Class="UI.Views.PageB" ** 省略> <Grid> <TextBlock Text="PageB"/> </Grid> </UserControl>
|
|