Re: [mono-android] Events for date and time picker

2011-11-30 Thread Jonathan Pryor
On Nov 19, 2011, at 8:38 PM, Paul F. Johnson wrote: > Should I still be using a listener and if so, how? Yes, set via the DatePicker.Init() method: http://androidapi.xamarin.com/monodoc.ashx?link=M%3aAndroid.Widget.DatePicker.Init(System.Int32%2cSystem.Int32%2cSystem.Int32%2cAndroid.Widg

[mono-android] Events for date and time picker

2011-11-19 Thread Paul F. Johnson
Hi, My date and time pickers are non-modal (they are part of the layout). AIUI, for modals, a listener has to be set (as per the examples). As these are not modals, I'm trying to use the bog standard form DatePicker dp // define it from a resource dp.Click += new EventHandler(dateChanged); Unfor