背景色在MonoTouch.Dialog中是如何变化的?
发布于 2013-02-03 19:06:23
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;
}
}https://stackoverflow.com/questions/13203265
复制相似问题