我正在尝试自定义 MonoTouch 对话框中部分元素标题中文本的位置。我阅读了您应该如何创建自己的 UILabel 来创建样式文本,然后将其分配给 Section 对象的 HeaderView 。那部分效果很好。
我现在面临的问题是:如何获得与默认无样式 Section 元素中使用的偏移量相似的文本偏移量(参见附图中的比较)。无论我做什么,我似乎都找不到将“样式化部分”文本从屏幕左边缘移开的方法。我尝试更改 RectangleF 声明中指定的 x 坐标,但是在呈现视图时,我指定的任何内容似乎都被忽略了。
这是屏幕截图的支持代码:
Root = new RootElement ("Login2Screen");
var labelHeader = new UILabel();
labelHeader = new UILabel(new RectangleF(0, 0, 320, 48));
labelHeader.Text = "Styled
labelHeader.TextColor = UIColor.Blue;
labelHeader.BackgroundColor = UIColor.Clear;
var styledSection = new Section(labelHeader);
styledSection.Add(new EntryElement("Username", string.Empty, string.Empty));
styledSection.Add(new EntryElement("Password", string.Empty, string.Empty));
Root.Add(styledSection);
var defaultStyleSection = new Section("Default Section");
Root.Add (defaultStyleSection);