gpt4 book ai didi

iphone - 带有元素 API 的 MonoTouch.Dialog 中的下拉列表(组合框)?

转载 作者:行者123 更新时间:2023-11-29 11:07:59 25 4
gpt4 key购买 nike

我知道这在 MonoTouch.Dialog 高级反射 API 中很容易实现,只需使用 Enum,但如何使用低级元素 API 实现呢?我似乎想不出一种方法来为 EntryElement 项提供数据源。我做错了吗?

最佳答案

您可以看看 Reflection API 是如何做到的,它实际上非常简单,它只是创建一个 RootElement,然后用它需要的各种值填充它。

像这样:

var section = new Section ("My Section");
for (int i = 0; i < 32; i++){
section.Add (new RadioElement ("Element " + i));
}

var myRadio = new RootElement ("My Radio", new RadioGroup (null, 0)) {
section
};

关于iphone - 带有元素 API 的 MonoTouch.Dialog 中的下拉列表(组合框)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12863977/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com