Microsoft のドキュメントによると、2 ペイン ビューについて次のように記載されています。
By default, Pane1Length is set to Auto and it sizes itself to fit its content. Pane2Length is set to * and it uses all the remaining space.
次のコードでは、デフォルトの動作が適用されていることがわかりません。明示的に設定する必要がある追加のプロパティが不足していますか? 私の最終目標は、Pane1 を常にシングル スクリーン デバイスに表示し、Pane2 を非表示にすることです。
<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<muxc:TwoPaneView x:Name="MyTwoPaneView">
<muxc:TwoPaneView.Pane1>
<Grid x:Name="Pane1Root"
Background="Orange">
</Grid>
</muxc:TwoPaneView.Pane1>
<muxc:TwoPaneView.Pane2>
<Grid x:Name="Pane2Root"
Background="Green">
</Grid>
</muxc:TwoPaneView.Pane2>
</muxc:TwoPaneView>
</Grid>