我想将字符串绑定到样本数据。我可以绑定到代码隐藏,但它会在手机屏幕上闪烁,直到示例数据消失。我知道如何绑定到列表并在模拟预览中查看它,我不知道在示例数据中创建字符串的语法。
以下是我拥有的示例数据。我想为名为 stringVar 的变量添加一个属性。它只是一个字符串。
<local:ListPage
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:ListPage" >
<local:ListPage.stringVar />
<local:ListPage.ItemList>
<local:Book id="0" title="item 1"/>
</local:ListPage.ItemList>
</local:ListPage>