使用资源从代码隐藏设置内容

时间:2016-05-15 13:22:09

标签: c# xaml win-universal-app xaml-resources

我目前正在为UWP应用程序设计UI。我有一个Splitview设置,它具有我想根据用户交互从代码隐藏设置的内容。

在参考资料中,我设置了一些菜单,我可以在内容属性本身没有任何问题的情况下设置:

<SplitView x:Name="NavPane" OpenPaneLength="250" CompactPaneLength="50" Content="{StaticResource Home}" DisplayMode="CompactOverlay" IsPaneOpen="False" PaneClosing="NavPane_PaneClosing">

我现在要做的是使用content属性绑定到Code-behind中的FrameworkElement变量。

如果可能的话,我怎样才能在xaml中设置菜单?或者是否有其他人使用的方法,我还没有找到呢?

非常感谢任何帮助。

1 个答案:

答案 0 :(得分:0)

我观看了微软的UWP系列教程,并了解到Data Bind有不同的方法。为了更准确,you may check this link of Microsoft showing you different examples. 我希望它有所帮助!