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
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