Whether there are any existing extensions or it is fairly simple to add styles to RootElement in monotouch.dialog in a similar way, you can style StyledStringElement.
Basically, I would like to add an image or icon to the RootElement to indicate which details will be displayed in the child view, for example, add the image Success, Warning, Error, Info type - so that users may only be interested in clicking on the details that are not completely successful.
Ideally, I could encode something like this ...
UIImage imageSuccess = ImageLoader.DefaultRequestImage (new Uri ("file://" + Path.GetFullPath ("Images/Success.png")), null); var root = new RootElement("Root") { Image = imageSuccess, Accessory = UITableViewCellAccessory.DetailDisclosureButton, new Section (){ new BooleanElement ("Airplane Mode", false), new RootElement ("Notifications") { new Section (null, "Turn off Notifications") { new BooleanElement ("Notifications", false) } }} };
Thanks for any help or pointers.
Sean source share