How can I create a custom styled EntryElement with MonoTouch.dialog?
问题 I am trying to create a custom entry element using monotouch.dialog. I understand how to subclass a StringElement to style my own string elements - see example below: public class CustomStyledStringElementPlain : MonoTouch.Dialog.StyledStringElement { public CustomStyledStringElementPlain (string _caption, UIColor _backgroundcolour, UITextAlignment _alignment) : base(string.Empty,string.Empty) { TextColor = UIColor.White; Font = UIFont.FromName ("Helvetica-Bold", 14f); Caption = _caption;