gpt4 book ai didi

iphone - MonoTouch : UISegmentedControl in a MonoTouch. 对话框标题?

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:08:53 25 4
gpt4 key购买 nike

如何将 UISegmentedControl 放入 MonoTouch.Dialog header 部分?

最佳答案

是的,您可以像操作任何常规 UIView 一样操作 Section 类的 HeaderView 成员:

public class SegmentedSection : Section
{
UISegmentedControl _SegmentedControl;

public SegmentedSection()
: base("")
{
InitializeSection();
}

private void InitializeSection()
{
_SegmentedControl = new UISegmentedControl();

// initialize _SegmenentedControl here...
// make sure to set Frame appropriate relative to HeaderView bounds.

this.HeaderView.AddSubview(_SegmentedControl);
}
}

关于iphone - MonoTouch : UISegmentedControl in a MonoTouch. 对话框标题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8180284/

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