保存用户收藏夹
在我的应用程序中,我需要向用户显示项目。 他可以将某些项目标记为收藏夹。我需要以不同的方式展示它们。
如何将收藏夹保存到用户的计算机上?我需要像配置条目之类的东西......但我需要在用户添加/删除收藏夹时更改它。您认为我应该将其保存在注册表中......还是在磁盘上的单独文件中?
.net 是否为此类情况提供一些支持?
谢谢, 拉杜
In my application I need to display items to the user.
He can mark some items as favorites. I need to display those differently.
How can I save the favorites on the user's computer? I need something like a config entry ... but I need to change that as the user add/remove the favorites. Do you think that I should save that in registry ... or on the disk in a separate file?
Does .net offers some support for such situations?
Thanks,
Radu
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,.NET Framework 可以非常轻松地在应用程序中保存用户级设置。您不应将它们直接保存到注册表,也无需自己编写代码来将设置保存到一个文件。此功能的文档可以在MSDN 上找到。
如果您使用 C#,这里有一个很好的介绍:在 C# 中使用设置。
如果您使用 VB.NET,这里有一个很好的介绍:VB.NET 中的应用程序设置。
Yes, the .NET Framework makes it very easy to save user-level settings in your application. You should not save them directly to the Registry, and it's not necessary to write code yourself to save the settings to a file. The documentation for this feature can be found here on MSDN.
If you're using C#, there's an excellent introduction here: Using Settings in C#.
If you're using VB.NET, there's an excellent introduction here: Application settings in VB.NET.