I want to have 2 selectionchanged events, like this

protected override void xpathList_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
//my code
}

private void xpathList_SelectionChanged(object sender, SelectionChangedEventsArgs e)
{
//my code
}

it gives the following error: Type 'TestApp.MainPage' already defines a member called 'xpathList_SelectionChanged' with the same parameter type.
How can I solve this?

link|improve this question

67% accept rate
1  
Why do you need 2? – ysrb Jul 17 '11 at 13:57
feedback

3 Answers

up vote 3 down vote accepted

You can't create to identical method with same signature. If you want to handle one event for one control by two different methods, you must use such code:

Page_Init()
{
    //initialization code
    xpathList.OnSelectionChanged += xpathList_SelectionChanged1;
    xpathList.OnSelectionChanged += xpathList_SelectionChanged2;
}

protected void xpathList_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
//my code
}

protected void xpathList_SelectionChanged2(object sender, SelectionChangedEventsArgs e)
{
//my code
}

and remove event handler declaration from markup.

How to: Create Event Handlers in ASP.NET Web Pages

link|improve this answer
what is the event handler, and also i get this errror code TestApp.MainPage.xpathList_SelectionChanged2(object, System.Windows.Controls.SelectionChangedEventArgs)': no suitable method found to override – please delete me Jul 17 '11 at 14:18
@Lark125 Event hadler - method to handle the SelectionChanged event. Updated my answer to use the override keyword. – VMAtm Jul 17 '11 at 14:21
thank you verry much one thing it can't find the method OnSelectionChanged it can find SelectionChanged – please delete me Jul 17 '11 at 14:31
@Lark125 Oh, I think this is my error. Use SelectionChenged event. – VMAtm Jul 17 '11 at 14:40
@Lark125 Don't forget to accept the answer :) – VMAtm Jul 17 '11 at 15:10
show 8 more comments
feedback

You need to create two methods with different names.

You'll need to add the second one as a handler manually; the designer can't add two handlers to one event.
Write xpathList.SelectionChanged += SomeMethod

link|improve this answer
feedback

Why don't you just bind two functions to one even?

XPathList xpathList = new XPathList();
xpathList.OnSelectionChanged +=(s,e) => FirstHandler(s,e);
xpathList.OnSelectionChanged += (s,e) => SecondHandler(s,e);
link|improve this answer
Why do you use new XPathList()? – VMAtm Jul 17 '11 at 14:00
Yep, my bad, should be List of XPath'es: List<XPath>() – om-nom-nom Jul 17 '11 at 14:03
No, why are you creating new control? – VMAtm Jul 17 '11 at 14:04
Why do you use lambdas here? xpathList.SelectionChanged += FirstHandler; works just as well. – svick Jul 17 '11 at 14:04
@VMAtm Why don't I do it? – om-nom-nom Jul 17 '11 at 14:15
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.