>From my testing, the text fields events are not working with the
UIScrollView.   This event did not fire either.

                        this.txtPlayers.TouchDown += (sender3, e3) => {
                                Console.WriteLine( "Debug Touchdown" );
                        };




*WorkAround: * 

                        this._pickerDataModelPlayers.ValueChanged += (s, e) => {
                                this.txtPlayers.Text = 
this._pickerDataModelPlayers.SelectedItem;

*                                 // ** Workaround **
                                // ** Picker closes BUT must change the
picker value for this workaround ***
                                this.btnClose.Clicked += (sender2, e2) => {
                                        txtPlayers.ResignFirstResponder();
                                };

                        } ;





--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/UIScrollView-Can-Not-dismiss-UIPickerView-tp4656467p4656470.html
Sent from the MonoTouch mailing list archive at Nabble.com.
_______________________________________________
MonoTouch mailing list
[email protected]
http://lists.ximian.com/mailman/listinfo/monotouch

Reply via email to