の背景色はどのようにEntryElement
変化しMonoTouch.Dialog
ますか?
質問する
482 次
1 に答える
1
public class PaperEntryElement: EntryElement
{
public PaperEntryElement(string caption, string placeholder, string value)
: base(caption,placeholder,value)
{
}
public override UITableViewCell GetCell(UITableView tv)
{
var cell= base.GetCell(tv);
cell.BackgroundColor =
UIColor.FromPatternImage(MediaProvider
.GetImage(ImageGeneral.paper_tile));
return cell;
}
}
于 2013-02-03T19:06:23.220 に答える