シェル「LoginRegion」にリージョンを1つだけ設定しました
<!-- Login Region -->
<Border Grid.Row="0">
<ContentControl x:Name="LoginRegion" Regions:RegionManager.RegionName="LoginRegion"
VerticalContentAlignment="Stretch" HorizontalContentAlignment="Stretch"/>
</Border>
そして、ログインが成功した後、「LoginRegion」を削除LayoutRoot
し、ログインモジュールのコードビハインドからシェルに新しいグリッド定義を持つ他の3つのリージョンを追加する必要があります。
<Grid.RowDefinitions>
<RowDefinition Height="93"/>
<RowDefinition />
<RowDefinition Height="24"/>
</Grid.RowDefinitions>
<!-- Top Region -->
<Border Grid.Row="0">
<ContentControl x:Name="TopRegion" Regions:RegionManager.RegionName="TopRegion"
VerticalContentAlignment="Stretch" HorizontalContentAlignment="Stretch"/>
</Border>
<!-- Main Region -->
<Border Grid.Row="1">
<ContentControl x:Name="MainRegion" Regions:RegionManager.RegionName="MainRegion"
Style="{StaticResource TestStyle}"
VerticalContentAlignment="Stretch" HorizontalContentAlignment="Stretch"/>
</Border>
<!-- Bottom Region -->
<Border Grid.Row="2">
<ContentControl x:Name="BottomRegion" Regions:RegionManager.RegionName="BottomRegion"
VerticalContentAlignment="Stretch" HorizontalContentAlignment="Stretch"/>
</Border>
助けてください、ありがとう。