0

我是一名 Windows Phone 开发人员。现在我正在为我之前为 windows phone 开发的 windows mobile 6.5 开发一个应用程序。

在我的应用程序中,我想存储一些用户凭据和一些应用程序设置。在 Windows Phone 中,我将其存储在 IsolatedStorageSettings 中。但是我怎样才能将它们存储在 windows mobile 中。?

windows mobile 中使用什么类似于 IsolatedStorageSettings ?我想让这个用户在手机中输入设置,直到应用程序卸载。

4

1 回答 1

1

Windows Mobile(嵌入式手持设备)6.x 上的紧凑框架 (3.5) 不支持独立存储设置。

作为替代方案,您可以使用 xml 文件或注册表或 ini 文件。

另请参阅在 Windows Mobile 应用程序中存储应用程序设置的首选方法是什么?. 我更喜欢使用 xml 或 OpenNetCF AppSettings。

这是另一个作为 xml 的 AppSettings 实现:http: //developers.de/blogs/andreas_lehmann/archive/2009/05/26/a-simple-implementation-of-config-files-for-windows-mobile.aspx

于 2013-03-11T05:34:26.873 回答