我在解决方案资源管理器中有2个项目。其中一个资源字典位于名为" Themes"的文件夹中。另一个项目设置为主启动,它具有MainWindow.xaml和MainWindow.xaml.cs。我只是想知道我是否可以保存我将在我的资源字典中编码的文本框中输入的任何文本,并在下次打开应用程序时仍然存在 代码是这样的:
<TextBox telerik:PersistenceManager.StorageId="myText"
IsEnabled="{Binding IsEnabled}"
Text="{Binding Notes, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"
AcceptsReturn="True"
TextWrapping="Wrap"
BorderThickness="0"
ScrollViewer.VerticalScrollBarVisibility="Auto"
Background="{x:Null}" Foreground="White" />
我尝试将我的resourcedictionary合并到MainWindow.xaml,但仍然无法解决 当我在MainWindow.xaml.cs中编写代码时访问文本框。
我该怎么做?我不知道该怎么做。 我会感激任何帮助。