Questions tagged [monotouch.dialog]

MonoTouch.Dialog is a MonoTouch framework for iOS for iOS developers to create dialog boxes and show table-based information without having to write dozens of delegates and controllers for the user interface.

MonoTouch.Dialog is a MonoTouch framework for iOS developers to create dialog boxes and show table-based information without having to write dozens of delegates and controllers for the user interface.

456 questions
3
votes
1 answer

In MonoTouch.Dialog what do I need to do to make datetime pickers have and "ok" and "cancel" option?

In MonoTouch.Dialog what do I need to do to make datetime pickers have and "ok" and "cancel" option? In this example code when you click a DateTime element you navigate to the picker screen there is no way to select or cancel after you navigate to…
Jamey McElveen
  • 18,135
  • 25
  • 89
  • 129
3
votes
2 answers

Tab Bar at the Bottom with MonoTouch.Dialog?

New to MonoTouch and MonoTouch.Dialog, but I'm sure it's possible to create a tab bar or button bar or what you want to call it - the black bar with icons/buttons at the bottom of the iPhone. Question is how to do it with MonoTouch.Dialog? Thanks…
Johan Danforth
  • 4,469
  • 6
  • 37
  • 36
3
votes
1 answer

How do I style Monotouch Dialog Section?

I want to style Monotouch Dialog Section like this (change the blue background to an image of my own)... How do I do that? Thanks
MojoDK
  • 4,410
  • 10
  • 42
  • 80
3
votes
1 answer

Monotouch Dialog implementation in a Class derived from UIViewController

I just want to override the Selected method from MonoTouch.Dialog. Simple as that I can not figure out the correct way.. I have a class FirstView which derives from UIViewController. In it I declare DialogViewController viewController = new…
Henning Schulz
  • 627
  • 6
  • 16
3
votes
1 answer

MonoTouch.Dialog Elements can be null when search bar used too quick

I have a DialogViewController with many elements and a search bar. When a user taps between the search bar and the cancel button fast, the Elements node of the Section in the following MonoTouch.Dialog.Elements.cs code is sometimes null so it throws…
Ian Vink
  • 66,960
  • 104
  • 341
  • 555
3
votes
1 answer

MonoTouch.Dialog: GlassButton in Section

I have a standard DialogViewControler which adds a Section with a View as the constructor: Section sec = new Section (new LogoHeaderView (320, 87)); In the LogoHeaderView I add a MT.Dialog GlassButton btnContact = new GlassButton…
Ian Vink
  • 66,960
  • 104
  • 341
  • 555
3
votes
1 answer

How to set a background image with Monotouch.Dialog

What is the best way to set a background image (below all controls) in Monotouch.Dialog? I am using the Elements API of Monotouch.Dialog.
Brian David Berman
  • 7,514
  • 26
  • 77
  • 144
3
votes
1 answer

Adding an image to a Section in Monotouch.Dialog

I have created a view using MonoTouch.Dialog with a couple of sections. The sections require an image to be added before the other sections, however I am struggling to add the UIImage to the area before the first Section. How would I go about this?…
Darbio
  • 11,286
  • 12
  • 60
  • 100
3
votes
1 answer

Monotouch.Dialog Customizing cells

I wanna customize cells in MonoTouch.Dialog. For example make custom background in BoolElement and make custom image for this small bool thing that can be on or off, sorry forgot the name, or make custom disclosure indicator image in…
3
votes
1 answer

MonoTouch: UISegmentedControl in a MonoTouch.Dialog header?

How can I put a UISegmentedControl in a MonoTouch.Dialog header section?
MojoDK
  • 4,410
  • 10
  • 42
  • 80
3
votes
1 answer

MonoTouch.Dialog: Setting Entry Alignment for EntryElement

Using the EntryElement to enter data as is results in the data being entered being aligned sort of in the middle. How do I specify that the entry should be right aligned on an iPad. For example:
Ian Vink
  • 66,960
  • 104
  • 341
  • 555
3
votes
2 answers

Inherit/Set the BackgroundView for RadioGroup generated DialogViewController TableView (MonoTouch.Dialog)

I want to use MonoTouch.Dialog RadioElements for selecting data and it has to have a UIImageView for the TableView BackgroundViews. I can set the BackgroundView on the initial DialogViewController's TableView so no problem there, but the TableView's…
bertusaurus
  • 634
  • 1
  • 6
  • 12
3
votes
1 answer

UINavigationController scrolls down on back button click

I'm working on an iPhone / iPad app with several navigation controllers. When I click a back button of a view while the device is in landscape mode, the previous view scrolls vertically into the screen, instead of scrolling horizontally as usual.…
Adrian Grigore
  • 33,034
  • 36
  • 130
  • 210
3
votes
3 answers

MonoTouch.Dialog: Dismissing a Keyboard

Using the Reflection API to auto generate a UI. How can I dismiss the keyboard when the user selects a new field, or if they choose a field which generates a new view to pick from. In the later case, when the user returns to the first screen, the…
Ian Vink
  • 66,960
  • 104
  • 341
  • 555
3
votes
1 answer

MonoTouch.Dialog - How to get values out of element UI

I have a RootElement declared and set up how I want on a DialogViewController, using the element-based API rather than the reflection API. Looks great. However I'm struggling to work out how I can get the values out. Using the reflection-based API…
tomfanning
  • 9,552
  • 4
  • 50
  • 78