如何在 Windows:UI::Xaml::Controls::ComboBox (WinRT) 中获取所选项目

发布于 2024-12-15 02:43:34 字数 504 浏览 1 评论 0原文

我已在组合框中添加了项目。如果我在组合框中选择某些项目,则无法检索所选项目。

大多数组合框属性都会返回对象类型,如果我尝试对对象执行 ToString() 操作,它会返回奇怪的值。

我尝试了这些属性。

 MainPage::cmbDeviceList_SelectionChanged(Platform::Object^ sender,      Windows::UI::Xaml::Controls::SelectionChangedEventArgs^ e){
 auto str = cmbDeviceList->SelectedItem->ToString;
 auto str1 = cmbDeviceList->SelectedValue->ToString();
 }    

我的查询是

  1. 如何在用户选择时从组合框中检索项目
  2. 为什么大多数属性返回对象。保留对象的目的是允许开发人员插入类结构吗?

I have added item in the ComboBox.I am not able to retrieve the selected item if I Select some Item in the combobox.

Most of the combox Propertise return Object Type and if If I try to do ToString() on the object it return Weird Value.

I tried these Propertise.

 MainPage::cmbDeviceList_SelectionChanged(Platform::Object^ sender,      Windows::UI::Xaml::Controls::SelectionChangedEventArgs^ e){
 auto str = cmbDeviceList->SelectedItem->ToString;
 auto str1 = cmbDeviceList->SelectedValue->ToString();
 }    

My Query is

  1. How to Retrieve the items from the combobox On user selection
  2. Why Most of the properties return Object.Is the purpose of keeping Object is to allow developer to insert class struct?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

短叹 2024-12-22 02:43:34

终于我得到了答案。

应该是

 auto str = (String^) cmbDeviceList->SelectedItem;

,但还是不清楚为什么会这样。

Finally I got Answer.

It should be

 auto str = (String^) cmbDeviceList->SelectedItem;

But Still Not clear Why it is like that.

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