在我的应用程序中,我将两个文本框绑定到项目设置。
<Page.Resources><p:Settings x:Key="Settings" /><Page.Resources/>
<TextBox Grid.Row="3" Name="textBox1" Text ="{Binding Source={StaticResource Settings}, Path=Default.Number_Of_Versions, Mode=TwoWay}" Grid.Column="1" Height="30" />
在文本框中,我看到在设计时正确设置为18的版本数,但在运行时,number_of_versions设置为5.(?)。知道为什么我看到这种行为吗?
我没有在代码中的任何位置设置5,并且设置在用户范围内。