如何将组合框值插入数据库

发布于 2024-08-02 21:43:24 字数 136 浏览 7 评论 0原文

如何将组合框值插入数据库。当我在应用程序中点击“保存”按钮时,它将像这样存储到数据库中。

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

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

发布评论

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

评论(4

尽揽少女心 2024-08-09 21:43:24

如果您在组合框中使用字符串,则可以使用 Akash Kava 所示的示例。

此外,如果组合框包含其他元素,您可以通过使用类似的方法来获取这些元素

((ComboBoxItem)rpcombo.SelectedItem).Content.ToString()

,并将其转换为您需要的内容。

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

((ComboBoxItem)rpcombo.SelectedItem).Content.ToString()

and casting it to what you need.

你是年少的欢喜 2024-08-09 21:43:24

假设您的组合框有您需要的字符串项目,

froeach( ComboBoxItem item in ComboBox1.Items )
{
  string str = (str)item;
 // saving value
}

最好的问候,
约丹

lets say your combobox has string items what you need is like this

froeach( ComboBoxItem item in ComboBox1.Items )
{
  string str = (str)item;
 // saving value
}

Best Regards,
Iordan

你穿错了嫁妆 2024-08-09 21:43:24

这个问题似乎有点太宽泛了。我们将需要更多有关此问题的信息才能回答这个问题。

您使用什么类型的数据库?
您是否已连接到数据库,或者您还需要 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.

淡淡の花香 2024-08-09 21:43:24
MyObject obj = myComboBox.SelectedItem as MyObject;

obj.ValueIamInterestedIn; <--- this should be inserted

或者如果您有字符串或任何值类型数组作为 ItemsSource 那么,

myComboBox.SelectedItem.ToString();
MyObject obj = myComboBox.SelectedItem as MyObject;

obj.ValueIamInterestedIn; <--- this should be inserted

or if you have string or any valuetype array as ItemsSource then,

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