0
안녕 얘들 아!MonoTouch.Dialog StyledStringElement
MonoTouch.Dialog에서 StyledStringElement의 DetailTextLabel을 설정/액세스하려면 어떻게해야합니까?
안녕 얘들 아!MonoTouch.Dialog StyledStringElement
MonoTouch.Dialog에서 StyledStringElement의 DetailTextLabel을 설정/액세스하려면 어떻게해야합니까?
두 번째 인수는 세부 텍스트 값입니다. 세부 텍스트를 지원하는 셀 스타일 (세 번째 인수)을 지정해야합니다. 기본 셀 스타일은 세부 텍스트 값을 표시하지 않습니다.
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을 참조하십시오.