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

MonoTouch Dialog custom font

I am rather new with MonoTouch and noticed the MonoTouch Dialog api which is very useful. What I want to achieve is something like this: http://img641.imageshack.us/img641/8514/consumentstartscherm.png So I want regular text in the table view…
Mittchel
  • 1,896
  • 3
  • 19
  • 37
2
votes
2 answers

MonoTouch Dialog's UITableView. How to handle taps?

MonotouchDialog makes it very easy to create UITableView Dialogs, but sometimes questions like that one popup: MonoTouch Dialog. Buttons with the Elements API Now, I have a similar problem but quite different: List users = GetUsers(); var…
iLemming
  • 34,477
  • 60
  • 195
  • 309
2
votes
1 answer

MonoTouch Dialog. Buttons with the Elements API

Is it possible to create buttons on the view using only Elements API? var root = new RootElement ("LoginScreen"){ new Section ("Enter your credentials") { new EntryElement ("Username", "Your user name", "user1"), …
iLemming
  • 34,477
  • 60
  • 195
  • 309
2
votes
1 answer

Resizing MonoTouch.Dialog StyledMultilineElement after an async call

I'm playing with MonoTouch.Dialog and written some code to show some tweets. The problem is that the table cells are too small and the cells are all bunched up when I load the StyledMultilineElements asynchronously. They look absolutely perfect when…
Duncan Smart
  • 31,172
  • 10
  • 68
  • 70
2
votes
2 answers

Monotouch.Dialog : Section font

It it possible to access the font and color properties of the section header and footer or do I need to subclass Section? I changed my UI to all black and everything looks great except my section headers and footers. Reflection API: class Login { …
Billy Coover
  • 3,827
  • 5
  • 36
  • 50
2
votes
2 answers

MonoTouch.Dialog : Element Delete Event

Using Miguel de Icaza's Patterns for Creating UITableViewCells, I have created a custom UITableViewCell and turned that into a MonoTouch.Dialog Element. I'm using the elements API to create an edit form, using a few of my custom elements. I'm trying…
Billy Coover
  • 3,827
  • 5
  • 36
  • 50
2
votes
2 answers

Monotouch.Dialog : Sectioned UITableViews with alphabetic navigation

Can I create a Sectioned UITableView with MonoTouch.Dialog with alphabetic navigation? In MonoTouch, I create sectioned UITableViews like so: public EntityDataSource(UIViewController controller) { _controller = controller; this._entities =…
Billy Coover
  • 3,827
  • 5
  • 36
  • 50
2
votes
1 answer

Monotouch-Dialog ReloadData does not reloads data?

I want to use monotouch dialog as not editable data display for some numeric values. But calling DialogViewController.ReloadData does not updates data from binded object. class AccountFormModel { [Section("Account data", "")] …
float_dublin
  • 481
  • 1
  • 5
  • 13
2
votes
2 answers

MonoTouch.Dialog cannot get the values on textfields

I have the following code public partial class AppDelegate : UIApplicationDelegate { UINavigationController _navigationController = new UINavigationController(); public enum PrivacySetting { always, never, friends }; …
Joe Dixon
  • 1,557
  • 2
  • 10
  • 14
2
votes
3 answers

Monotouch.Dialog: Backing Field Exclusion

Using the amazing MonoTouch.Dialog tool set, how can I ensure that Backing fields are not show. When I assign an [Entry] attribute to a get;set; property, I get the following rendered: [Caption("Weight")] [Entry(Placeholder = "Kilograms",…
Ian Vink
  • 66,960
  • 104
  • 341
  • 555
2
votes
1 answer

Monotouch.Dialog: Enable Selection in UITableView

Using MonoTouch.Dialog I create a table of values. When the user clicks a row, the row should flash blue as per normal. How do I enable this in MonoTouch.Dialog?
Ian Vink
  • 66,960
  • 104
  • 341
  • 555
2
votes
1 answer

Xamarin.IOS MonoTouch.Dialog ExpandableDatePickerElement doesn't work correctly

I wrote an expandableDatePickerElement as a MonoTouch.Dialog.Element (Changed the code from:here) Here's my code for that: using System; using MonoTouch.Dialog; using MonoTouch.UIKit; using System.Drawing; namespace ImageToDo { public class…
Andy
  • 99
  • 7
2
votes
1 answer

Monotouch.Dialog EntryElement label above input

I'm using Monotouch.Dialog and specifically want to have the label above the input in the cell. Is there a way to do this without needing to roll my own?
user156888
2
votes
1 answer

Monotouch.Dialog and iAds

I'm playing with iAds. I want to add it to an app that is basically a bunch of Monotouch.Dialog views. Is the best practise to add a UIViewController, then add a ADBannerView and a Monotouch.Dialog to it , or should I add the iAds view to the…
Ian Vink
  • 66,960
  • 104
  • 341
  • 555
2
votes
3 answers

Monotouch Dialog partially hidden behind IOS 7 top navigation bar and clock

Just started targetting IOS 7 with Xamarin Studio but now my monotouch dialog views are partially hidden behind top navigation bar and clock. How to reveal them/resize view/fix?
fractal
  • 1,649
  • 17
  • 31