如何更改节目的主题
我有一个软件,一个用c#开发的winform程序,有几个不同的主题。 但是,如果我的团队成员之一想要更改主题,他们必须问我,然后我必须更改它,重新编译并发送它。 相反,我希望他们能够自由地改变主题。 这就像改变 Firefox 中的主题等。关于如何开始编写这样一个软件有什么想法吗?
I have a piece of software, a winform program developed in c#, that has several different themes. But if one of my team members wants to change the theme they have to ask me, then i have to change it, recompile and send it. Instead I wish for them to be able to freely change the theme. It is like changing the theme in Firefox, etc. Any ideas on how to begin coding such a piece of software?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这似乎是放入配置文件中的一件好事。 有一种方法可以检查配置文件中的主题设置。 并在此基础上更改主题。 我还建议使用默认主题,以防配置文件无法指定主题。
或者,这可以进入应用程序的管理/设置/选项部分。 您可以将其与其他设置一起保存在其中。 在注册表或应用程序设置文件夹等中。
This seems like a good thing to put into your config file. Have a method that checks the config file for a theme setting. And change the theme based on that. I would also recommend having a default theme in case the config file fails to specify one.
Alternatively, this could go into the admin / settings / options portion of the application. Where you could save it with your other settings. In the registry, or app settings folder, etc.