我目前正在为 UWP 应用程序设计 UI。我有一个 Splitview 设置,其中包含我想根据用户交互从代码隐藏设置的内容。
在参考资料中,我设置了一些菜单,我可以从内容属性本身毫无问题地进行设置:
<SplitView x:Name="NavPane" OpenPaneLength="250" CompactPaneLength="50" Content="{StaticResource Home}" DisplayMode="CompactOverlay" IsPaneOpen="False" PaneClosing="NavPane_PaneClosing">
我现在想做的是使用 content 属性绑定到代码隐藏中的 FrameworkElement 变量。
如果可能的话,如何在 xaml 中设置我的菜单?或者有没有其他人使用的我还没有掌握的方法?
非常感谢任何帮助。