I'm using DialogViewController from MonoTouch.Dialogs. I'd like to be able to dismiss the keyboard by clicking on the background of the dialog.
I usually employ the technique of filling the view with a large custom button and placing it behind all the other elements. However, I can't make this work in the DialogViewController. I did thi...
I have a DialogViewController with EnableSearch = true. Searching works fine and displays results in dialog. If I navigate into a result element or to another tab AND THEN come back to the search tab and try to tap any of the search result elements, I get "Argument is out of range.\nParameter name: index" at line 463 in DialogViewControl...
I am thinking about how an application can be written to work on both Windows 7 Phone and IPhone, one option is MonoTouch.Dialog for most of the UI on the IPhone and then create a layer that will let the some code work on WP7.
Has anyone looked at doing this?
...
class Fahrzeug
{
[Entry ("Typ")]
public string typ;
[Entry ("Name")]
public string name;
[RadioSelection("ListOfString")]
public int selected=0;
public IList<string> ListOfString;
}
public override void ViewWillAppear (bool animated)
{
base.ViewWillAppear ...