MonoTouch.Dialog StyledStringElement

时间:2013-03-31 14:10:44

标签: xamarin.ios element monotouch.dialog xamarin

Hy guys!

如何在MonoTouch.Dialog中设置/访问StyledStringElement的DetailTextLabel?

1 个答案:

答案 0 :(得分:3)

第二个参数是详细文本值。请注意,您必须指定支持详细文本的单元格样式(第三个参数) - 默认单元格样式不显示详细文本值。

new StyledStringElement ("Default", "Invisible value", UITableViewCellStyle.Default),
new StyledStringElement ("Value1", "Aligned on each side", UITableViewCellStyle.Value1),
new StyledStringElement ("Value2", "Like the Addressbook", UITableViewCellStyle.Value2),
new StyledStringElement ("Subtitle", "Makes it sound more important", UITableViewCellStyle.Subtitle),
new StyledStringElement ("Subtitle", "Brown subtitle", UITableViewCellStyle.Subtitle) {
    DetailColor = UIColor.Brown
}

有关此代码的示例,请参阅MT.Dialog sample app