0
votes

I want to use Monotouch.Dialog for the first screen (after login in) that shows all the 'things' a user can do (just a simple grouped table style). I know I can achieve this very easily with Dialog, but I want to open my own screens when selecting an item (RootElement) from this list.

How can I achieve this?

1

1 Answers

0
votes

If you nest the RootElements Monotouch.Dialog will automatically open the new screen when it is clicked. If you need more control over the process you can override Selected method and open the screen according to your needs.

Have a look at section 3.1 at Introduction to MonoTouch.Dialog