MonoTouch dialog box adds a toolbar to the bottom of the dialog box

I am trying to add a toolbar that is anchored to the bottom of the MonoTouch dialog box.

Here is an example:

enter image description here

Thus, when you scroll, the contents of the table scrolls, but the panel at the bottom below always remains in view. I know how to do this using the interface constructor, but I don’t know how to do this with Mt.D. Please tell me that it can be done!

+2
source share
1 answer

To do this, it may be easiest to use DialogViewController and its view as a child of another UIViewController.

public class MyViewController : UIViewController, override ViewDidLoad.

+4

All Articles