1
What a mistake when I compile my application?
Severity Code Description Project File Line Suppression State Error CS1061 'Blankpage1' does not contain a Definition for 'listView_SelectionChanged' and no Extension method 'listView_SelectionChanged' Accepting a first argument of type 'Blankpage1' could be found (are you Missing a using Directive or an Assembly Reference?) Alert C: Users new Documents visual studio 2015 Projects Alert Blankpage1.xaml 16 Active
C: Users new Documents visual studio 2015 Projects Alerta Blankpage1.xaml(16,105,16,130): error CS1061: 'Blankpage1' does not contain a Definition for 'listView_SelectionChanged' and no Extension method 'listView_SelectionChanged' Accepting a first argument of type 'Blankpage1' could be found (are you Missing a using Directive or an Assembly Reference?)
double click on the error .. and go to the line that this red underline and remove it...
– andrepaulo
You must have deleted the event
SelectionChanged
oflistView
, correct?– igventurelli