Can not implicitly convert type
When I try to compile your chapter 6 code straight from the download website. I get the following error message:
Error 1 Cannot implicitly convert type 'System.EventHandler<Android.Widget.ItemEventArgs> ' to 'System.EventHandler<Android.Widget.AdapterView.It emSelectedEventArgs>' C:\C#AndroidProgramming\Chapter6\Databinding_Spinn erCursor\Databinding_Cursor\SpinnerSample.cs 63 34 Databinding_Cursor
The compiler fails on this line of code:
targetSpinner.ItemSelected += new EventHandler<ItemEventArgs>(SpinnerItemSelected);
|