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
0
votes
1 answer

Changing EntryElement keyboard returnkeytype monotouch.dialog

I'm using this code for changing the keyboard returnkeytype of the entry element in monotouch.dialog but it yet show 'return' on the keyboard. protected override MonoTouch.UIKit.UITextField CreateTextField (System.Drawing.RectangleF frame) …
Husein Behboudi Rad
  • 5,434
  • 11
  • 57
  • 115
0
votes
1 answer

Element for picking an integer in MonoTouch.Dialog

I have an application using the MonoTouch.Dialog Reflection API, and I have a view model with a couple of int properties. Unfortunately, it doesn't seem like MonoTouch.Dialog have any elements supporting integer types. I would expect it to be a…
NilsH
  • 13,705
  • 4
  • 41
  • 59
0
votes
3 answers

Using 'if' statements within Linq statement

So, we are trying to display information using a Linq statement yet the issue we are having is we don't want some elements to be created if a variable is "" - Currently we are unable to do this as we cannot include an 'if' statement within the linq…
Christopher Orchard
  • 1,267
  • 2
  • 12
  • 15
0
votes
1 answer

Montouch.dialog access elements individually causes error

I'm wanting to style the cells that I get back from a JSON response. I'm able to loop through the elements but as soon as I try to style them I get the error below. What am I missing? !-- error Collection was modified; enumeration operation may not…
user686483
  • 1,584
  • 6
  • 18
  • 29
0
votes
2 answers

MonoTouch.Dialog UIProgressView

How can I implement an UIProgressView with MonoTouch.Dialog? Is there a way to do it without creating a custom element?
0
votes
1 answer

MonoTouch - changing DetailTextLabel text color is causing a NullReferenceException error

I am trying to finish up a custom cell for my tables using monotouch.dialog, and have nearly everything sorted out, except for my cell's detail text label colour. I am overriding GetCell to customise my EntryElement cell like this: public class…
0
votes
1 answer

MonoTouch.Dialog StyledStringElement

Hy guys! How can I set / access the DetailTextLabel of a StyledStringElement in MonoTouch.Dialog?
user1868675
  • 127
  • 1
  • 5
0
votes
1 answer

Is it possible in MonoTouch to determine if the user clicked on an image in a BadgeElement?

I have amended the TODO list app to use a badge element instead of the boolean element as follows: protected void PopulateTable() { tasks = TaskManager.GetTasks().ToList (); UIImage ticked = new…
digiguru
  • 12,724
  • 20
  • 61
  • 87
0
votes
1 answer

How to display HTML string with MonoTouch Dialog?

I need a way to display a string with HTML tags within MonoTouch.Dialog element. If I understand right the build in HTMLElement is only for load external data to display. So I asked google for and found this thread here…
Andre Bergmann
  • 59
  • 3
  • 10
0
votes
2 answers

Positioning of Section HeaderView elements in MonoTouch Dialog

I am trying to customize the position of text in Section element headers in MonoTouch Dialog. I read up on how you are supposed to create you own UILabel to create styled text and then assign that to the HeaderView of the Section object. That part…
Matthew Ruston
  • 4,282
  • 7
  • 38
  • 47
0
votes
1 answer

MonoDroid AlertDialg with ListView

I am fairly new to MonoDroid/Android Development and I was wondering if anyone can point me to a sample or explain how I would go about creating an AlertDialog with a custom ListView? I need to have a list of names with images. I am able to…
LilMoke
  • 3,176
  • 7
  • 48
  • 88
0
votes
2 answers

Monotouch.Dialog: crash with EnableSearch and custom RootElement

i use Monotouch.Dialog (Xamarin.iOS Version: 6.2.0.65) to create a RadioGroup with RadioElements. I only want the 'search' functionality in the second screen (where the user selects from the long list), so i created a separate DialogViewController…
Peesjee
  • 3
  • 1
0
votes
1 answer

Open own screens from RootElement

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…
Peesjee
  • 3
  • 1
0
votes
1 answer

Record sound from microphone in Monotouch.Dialog

Xamarin example found here : http://docs.xamarin.com/samples/Sound works, but the GUI is not Monotouch.Dialog, and it looks poor together with the rest of my MD APP. How to add a Monotouch.Dialog controller, to start and stop recording, and show the…
0
votes
1 answer

Monotouch OwnerDrawnElement Click Event

I'm using the OwnerDrawnElement example from the Monotouch.Dialog example project (modifying colors but that's about it). I would like to know how to register click events for each row working. I've heard that the OwnerDrawnElement isn't quite…
BRogers
  • 3,534
  • 4
  • 23
  • 32