1

我是 MonoTouch 的新手。我需要在 1 个视图中显示 2 个表格和它们之间的按钮monotouch.dialog。它应该看起来像

---top of screen---
I BoolElement     I
I StringElement   I
I StringElement   I          <--- Yeah,yeah this is iPhone(in my Opinion)
I --empty space-- I
I button          I
I --empty space-- I
I StringElement   I
---End Of screen--

我在互联网上搜索过 - 但找不到类似的东西。:(问题是显示最后一个srigElement

4

1 回答 1

3

使用 MonoTouch.Dialog,您可以使用以下内容:

    RootElement CreateRoot ()
    {
        var btn = new UIButton ();
        btn.TouchUpInside += delegate {
            Console.WriteLine ("touch'ed");
        };
        // TODO: customize button look to your liking
        // otherwise it will look like a text label
        btn.SetTitle ("button", UIControlState.Normal);
        Section s = new Section ();
        s.HeaderView = btn;
        return new RootElement (String.Empty) {
            new Section () {
                new BooleanElement ("bool", false),
                new StringElement ("s1"),
                new StringElement ("s2"),
                },
            new Section (),
            s,
            new Section () {
                new StringElement ("s3"),
            },
        };      
    }

Section这将使用 aUIButtonHeaderView. 相同的技巧可用于添加任何其他类型的控件。

于 2011-11-28T19:35:11.627 回答