Xamarin.ios 对话框:使StringElement具有AccessoryView

Xamarin.ios 对话框:使StringElement具有AccessoryView,xamarin.ios,monotouch.dialog,Xamarin.ios,Monotouch.dialog,当StringElement具有与之关联的点击操作时,如何使其显示UITableViewCellAccessory.DisclosureIndicator 我可以对它进行子类化并自己进行滚动,但我更愿意坚持MonoTouch.Dialog框架 StringElement s = new StringElement (item.Title); s.Tapped += delegate { ShowDomainItem (s); }; 尝试StyledStringElement,它允许配置比Str

当StringElement具有与之关联的点击操作时,如何使其显示UITableViewCellAccessory.DisclosureIndicator

我可以对它进行子类化并自己进行滚动,但我更愿意坚持MonoTouch.Dialog框架

StringElement s = new StringElement (item.Title);
s.Tapped += delegate { ShowDomainItem (s); };

尝试StyledStringElement,它允许配置比StringElement多得多的设置。

要扩展Miguel所说的内容:

new-StyledStringElement(“电影演员”){accessority=uitableviewcellaccessority.dispositionindicator}