简体   繁体   English

动态更改文本块中的文本

[英]dynamically changing text in textblock

我正在尝试制作Windows Phone应用程序....在此应用程序中,我必须显示一个带有文本块以及下一个和上一个按钮的页面,并且文本块中的文本会相应更改.....文本对于单页,每页3至4行,大约1000页,所以我想我可以使用序列号将文本保存在数据库中,甚至使用序列号也可以检索它。...但是我看不到数据库支持对于Windows Phone ...可能是错误的....我也不想使用Microsoft本身未提供的任何第三方api,所以请有人指导我非常感谢您提供的任何帮助。

Depends on which version you are developing on. 取决于您所开发的版本。 On windows phone 7.0, 7.1 database is not supported, you could use IsolatedStorage to store in Folder/file format as suggested by Zdarvko. 在Windows Phone 7.0上,不支持 7.1 数据库,您可以按照Zdarvko的建议,使用IsolatedStorage以文件夹/文件格式存储。

For Windows 7.5-mango,(7.1 too - link given by Paras - http://debugmode.net/2011/09/25/local-database-application-for-windows-phone/ ), Paras has already provided with links. 对于Windows 7.5-芒果(7.1也是-Paras提供的链接-http: //debugmode.net/2011/09/25/local-database-application-for-windows-phone/ ),Paras已经提供了链接。

There are several options for local databases on windows phone but none of them comes from Microsoft. Windows Phone上的本地数据库有多个选项,但是它们都不来自Microsoft。 For 1000 lines I would use an xml file stored in the isolated storage or even a plain text file. 对于1000行,我将使用存储在隔离存储中的xml文件,甚至使用纯文本文件。

Windows Phone does support Local DB. Windows Phone不支持本地数据库。

Look here for sample code and examples: 在这里查看示例代码和示例:

http://www.windowsphonegeek.com/articles/Windows-Phone-Mango-Local-Database-mapping-and-database-operations http://windowsphonegeek.com/tips/Windows-Phone-Mango-Local-Database-SQL-CE--Linq-to-SQL http://debugmode.net/2011/09/25/local-database-application-for-windows-phone/ http://www.windowsphonegeek.com/articles/Windows-Phone-Mango-Local-Database-mapping-and-database-operations http://windowsphonegeek.com/tips/Windows-Phone-Mango-Local-Database-SQL -CE--Linq-to-SQL http://debugmode.net/2011/09/25/local-database-application-for-windows-phone/

You can also use Isolated Storage for your purpose: 您还可以将隔离存储用于您的目的:

http://www.windowsphonegeek.com/tips/all-about-wp7-isolated-storage--intro-to-isolated-storage http://www.windowsphonegeek.com/tips/all-about-wp7-isolated-storage--intro-to-isolated-storage

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM