保存用户收藏夹

发布于 2024-10-17 13:43:03 字数 202 浏览 0 评论 0原文

在我的应用程序中,我需要向用户显示项目。 他可以将某些项目标记为收藏夹。我需要以不同的方式展示它们。

如何将收藏夹保存到用户的计算机上?我需要像配置条目之类的东西......但我需要在用户添加/删除收藏夹时更改它。您认为我应该将其保存在注册表中......还是在磁盘上的单独文件中?

.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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

挽袖吟 2024-10-24 13:43:03

是的,.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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文