1

の背景色はどのようにEntryElement変化しMonoTouch.Dialogますか?

4

1 に答える 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 に答える