如何在 WP 中将枚举绑定到列表选择器?
我在 WP 应用程序中使用 so enum:
public enum sex { 人=0, 女士, 其他 。
我如何编写列表选择器项目是性别枚举项目的代码 明确地说,我希望用户从列表选择器中选择性别。请帮忙。
I use so enum in WP application:
public enum gender
{
man = 0,
woman,
other
}
how can i write code that Listpicker items are gender enum items. To tell clear, i want user to select gender from Listpicker. Please, help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设您想绑定到枚举类型的属性,就像这样?
我就是这样做的:(
在构造函数中)
(XAML)
(在您的命名空间中的某个位置)
在我的例子中,我还想使用枚举的描述而不是它们的名称,所以我使用此代码而不是“in构造函数”上面一行:
I assume you want to bind to a property of the enum type, like this?
This is how I did it:
(in the constructor)
(XAML)
(somewhere in your namespace)
In my case, I also wanted to use the enum's Descriptions instead of their names, so I'm using this code instead of the "in the constructor" one-liner above: