Currently to tell a cell not to flash blue when selected, I set the Cell’s SelectionStyle to none:
cell.SelectionStyle = UITableViewCellSelectionStyle.None;
Is there a way to tell the entire DialogView (TableView) to apply this to all cells in the table?
No, the
SelectionStyleproperty is not part ofUIAppearanceand it’s also being set by mostElementin MonoTouch.Dialog (so it would be overridden).Note that several elements, e.g.
EntryElement,UIViewElement,BooleanElement,FloatElement…, are already setting theSelectionStyletoNone.The easiest way is to create new (or subclass existing)
Elementtypes and set this property (along with others) to match your application style.