在我见过的所有示例中,每行只有一个元素。我想将 2 个或更多编辑框并排放置以节省垂直空间。有没有人遇到过示例显示这是如何完成的?
Best Answer-推荐答案 strong>
这在大多数应用程序中并不常见(由于屏幕尺寸有限),但您应该能够使用 UIViewElement 执行类似的操作。例如
定义您自己的 UIView 类型(例如 MyView ),其中包含您想要的两个(或更多)UI 元素(例如两个 UITextView ) .
// incomplete example
class MyView : UIView {
public UIView (string first, string second)
{
tv1 = new UITextView (new RectangleF (...)) { Text = first; }
tv2 = new UITextView (new RectangleF (...)) { Text = second; }
}
// ...
}
接下来创建 UIViewElement 并将它们添加到您的 DialogViewController 。
new UIViewElement ("caption", new MyView ("a", "b"), false);
关于c# - 您可以并排放置两个编辑字段吗?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/9560805/
|