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

Monotouch Dialog OwnerDrawnElement - Height Size not being called

I am trying to inherit from OwnerDrawnElement (as presented in the docs). Everything seems to be working except the Height method is never called so I am not able to set the height of the cell. The Height method is never called (breakpoint never…
bdev74
  • 11
  • 1
  • 4
0
votes
1 answer

Xamarin API to read audio jack input ( like Square CC reader ) & bluetooth connectivity?

Does Xamarin has API to read audio jack input ( like Square CC reader ) & bluetooth connectivity? Thanks.
0
votes
1 answer

MvvmCross Multi-Line Edit box in Dialog

I'm using Xamarin.Touch and MvvmCross and am trying to get a multi-line text edit box to work in a dialog section Here is the code I'm using: Root = new RootElement("Settings") { new Section("Web API") { new…
Steve Chadbourne
  • 6,873
  • 3
  • 54
  • 82
0
votes
1 answer

Section with RootElement inside

I'm new to iOS app development, Xamarin/Xcode, and Monotouch.dialog. I'm trying to do the example under "More on Sections and RootElements: RootElements" (http://docs.xamarin.com/guides/ios/user_interface/monotouch.dialog/) to get myself acquainted…
0
votes
1 answer

How to align right, sections of a rootElement in a DialogViewController

I'm writing some codes for iOS using c# in Xamarin Studio. In a dialogViewController , I'm creating a rootElement that has several Sections.How can I Align Right ,Caption and Elements of a Section. I'm creating the rootElement like this: …
user3243726
  • 11
  • 1
  • 3
0
votes
0 answers

Use Mvvmcross Binding with MonoTouch.Dialog RadioGroup

Based on the following question: Use Mvvmcross Binding with MonoTouch.Dialog (Lists and Commands) I have tried to implement a bindable section to allow an async call to update the radio group list based on the previous selection. public class…
Ollie
  • 1,140
  • 8
  • 26
0
votes
1 answer

Place DialogViewController in VIewController Subviews

In the DetailView of my SplitViewController, I placed several UIViews as containers for different flat TableViews. So far my intention. To keep things simple, I wanted to add DialogViewControllers (MvxDialogViewControllers to be honest, but that…
0
votes
1 answer

Monotouch.Dialog Style Implementation Without Using Monotouch.Dialog?

How would I go about implementing something in C# for iOS, that looks and feels like the MonoTouch.Dialog controls, without actually using Monotouch.Dialog?
Goober
  • 13,146
  • 50
  • 126
  • 195
0
votes
0 answers

How can I bind a UITableViewCell's subview event to a view model ICommand?

I have a view that uses several MonoTouch.Dialog elements for screen controls. I've been able to create fluent bindings for all of the screen controls except one, a ButtonElement, because I can't access the TouchUpInside event of its UIButton…
billmaya
  • 1,311
  • 3
  • 15
  • 34
0
votes
1 answer

MT.Dialog FloatElement is not responsive

I've added a floatElement to a root section, but when running the app, it seems that the slider is kind of unresponsive. I have to press multiple times to move the slider. RootElement root = new RootElement (title) { new Section("Weight") …
Kaj Bonfils
  • 416
  • 4
  • 10
0
votes
1 answer

MvvmCross Dialog select from a list (combobox)

There is no support for selecting from a list in MOnotouch.dialog. I have searched for anything that can be amended to be used in MvvmCross.Dialog but there seems to be nothing that even works with iOS7. Has anyone managed to solve this problem? ATM…
user156888
0
votes
1 answer

Change the height of a row after the Ui has been displayed

In monotouch.dialog is it possible to alter the height of a row after the Ui has been displayed? The reason for this is that the UI is drawn and then once some text is passed back from a service I am populating a TextViewElement which uses Text Kit…
user156888
0
votes
1 answer

MTD StyledStringElement has a white background after IOS 7.0 upgrade

I've recently upgraded my app to IOS 7. On one on my screens I'm using MTD StyledStringElement. The elements background is white on IOS 7, and I can't figure out how to change it back to clear. I've tried to set the background color to clear but…
user686483
  • 1,584
  • 6
  • 18
  • 29
0
votes
1 answer

How can I get an element with 2 buttons side by side?

I need to have a Monotouch.Dialog element with 2 buttons side by side using MvvmCross Has anyone managed this? I have this so far but know it's not going to work as I have no way of knowing which button was tapped: public class DoubleButton :…
user156888
0
votes
1 answer

Ios default icon for open view from list

In every ios app you can have a list that contains elements with subelements. Tapping on the element will open a new page and you can usually press back to return. This is indicated with a grey ">" symbol on the right. Is this symbol downloadable…
Kristof
  • 3,267
  • 1
  • 20
  • 30