MonoTouch.Dialog:让StringElement拥有AccessoryView

Ian*_*ink 3 xamarin.ios monotouch.dialog

当StringElement具有与之关联的Tapped Action时,如何让它显示UITableViewCellAccessory.DisclosureIndicator?

我可以将它子类化并自己滚动,但我宁愿坚持使用MonoTouch.Dialog框架.

StringElement s = new StringElement (item.Title);
s.Tapped += delegate { ShowDomainItem (s); };
Run Code Online (Sandbox Code Playgroud)

mig*_*aza 5

尝试使用StyledStringElement,它允许配置比StringElement更多的设置.