本文介绍了如何创建/保存用户可选的预设?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在编写一个使用约15个文本框/组合框的程序.

我想使用列表选择",以便用户可以选择一个预设,该预设用以前的用户输入值填充文本框.
用户可以在运行时编辑和选择这些预设.他可以在15个文本框中填写不同的值,并将其保存为其他预设名称.关闭程序时,必须保存所有预设.启动时,必须重新加载所有预设.
您对我应该如何建议有什么建议吗?

设置访问或SQL数据库对于分发没有帮助.
是否将所有文本框都放在datagridview中?但是我不知道如何将预设"组合框绑定到de datagridbiew中的索引行,因此用户可以选择预设.
如何在启动时保存所有内容并再次加载? Visual Studio应用程序设置一次只能保存一个属性,不能保存多个用户选择吗?

非常感谢

I''m writing a program that uses about 15 textboxes/comboboxes.

I want to use a "list selection" so the user can select a preset that fills the textboxes with previous user inputed values.
The user can edit and select these presets during runtime. He can fill in different values in the 15 textboxes and save them under an other preset name. All presets have to be saved when cloosing the program. At startup all presets have to be loaded again.
Do you have suggestions how I should do this?

Setting up an access or SQL database is to bigg an not usefull to distribute.
Do I put all textboxes in a datagridview? But I don''t know how to bind a "preset" combobox to an index row in de datagridbiew, so the user can select a preset.
How do I save everything an load it again at startup? Visual studio application settings can save only one property at a time, not multiple user selections, wright?

thanks a lot

推荐答案


这篇关于如何创建/保存用户可选的预设?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 02:29