When a StringElement has A Tapped Action associated with it, how do I get it to display a UITableViewCellAccessory.DisclosureIndicator ?
I can subclass it and roll my own, but I'd rather stick to the MonoTouch.Dialog framework.
StringElement s = new StringElement (item.Title);
s.Tapped += delegate { ShowDomainItem (s); };