如何将组合框值插入数据库
如何将组合框值插入数据库。当我在应用程序中点击“保存”按钮时,它将像这样存储到数据库中。
System.Windows.Controls.ComboBoxItem
我如何获取组合框的正确值?
How to insert a Combobox value in to a database. When i hit Save button in my application, it will stored stored into database like this way..
System.Windows.Controls.ComboBoxItem
What i do for getting correct value of a combo box?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果您在组合框中使用字符串,则可以使用 Akash Kava 所示的示例。
此外,如果组合框包含其他元素,您可以通过使用类似的方法来获取这些元素
,并将其转换为您需要的内容。
if you are using a string in the combobox, then you can use the example that Akash Kava showed.
Also, if the combobox contains other elements, you can get those elements through the use of something like
and casting it to what you need.
假设您的组合框有您需要的字符串项目,
最好的问候,
约丹
lets say your combobox has string items what you need is like this
Best Regards,
Iordan
这个问题似乎有点太宽泛了。我们将需要更多有关此问题的信息才能回答这个问题。
您使用什么类型的数据库?
您是否已连接到数据库,或者您还需要 tahat 方面的帮助吗?
在这种情况下,互联网上有很多好的读物可以为您提供帮助,我可以链接到它们。
是否要将 ComboBoxItem 保存为 .net 对象或项目的 det 值?
这个清单还可以继续列下去,你必须给我更多的东西来咀嚼。
This question seems a bit too broad. We are going to need nore information about this to be able to answer this one.
What kind of database are you using?
Are you connected to the database or do you need help with tahat as well?
In that case there are alot of good reading on the internet to your aid, that I can link to.
Do you want to save the ComboBoxItem as an .net object or det values of the item?
The list can go on, you have to give me something more to chew on.
或者如果您有字符串或任何值类型数组作为 ItemsSource 那么,
or if you have string or any valuetype array as ItemsSource then,