如何在 Windows:UI::Xaml::Controls::ComboBox (WinRT) 中获取所选项目
我已在组合框中添加了项目。如果我在组合框中选择某些项目,则无法检索所选项目。
大多数组合框属性都会返回对象类型,如果我尝试对对象执行 ToString() 操作,它会返回奇怪的值。
我尝试了这些属性。
MainPage::cmbDeviceList_SelectionChanged(Platform::Object^ sender, Windows::UI::Xaml::Controls::SelectionChangedEventArgs^ e){
auto str = cmbDeviceList->SelectedItem->ToString;
auto str1 = cmbDeviceList->SelectedValue->ToString();
}
我的查询是
- 如何在用户选择时从组合框中检索项目
- 为什么大多数属性返回对象。保留对象的目的是允许开发人员插入类结构吗?
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
- How to Retrieve the items from the combobox On user selection
- Why Most of the properties return Object.Is the purpose of keeping Object is to allow developer to insert class struct?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
终于我得到了答案。
应该是
,但还是不清楚为什么会这样。
Finally I got Answer.
It should be
But Still Not clear Why it is like that.