Day 2 and I don't have a clue. [.Net 3.5, VS 2008]
I have a UserControl that defines a ClickEvent:
public static readonly RoutedEvent ClickEvent = EventManager.RegisterRoutedEvent (
"Click", RoutingStrategy.Bubble, typeof ( RoutedEventHandler ), typeof ( TouchToggleButton ) );
and an OnClick method:
protected virtual void OnClick ( )
{
RaiseEvent ( new RoutedEventArgs { RoutedEvent = ClickEvent, Source = this } );
}
In each of two different windows, I wire an instance of this control to an event handler.
<wft:TouchToggleButton DockPanel.Dock="Top" x:Name="measurableButton" Click="measurableButton_Click">Cannot Measure</wft:TouchToggleButton>
and
<wft:TouchToggleButton x:FieldModifier="public" x:Name="BuyoutButton" Click="BuyoutButton_Click">Buyout</wft:TouchToggleButton>
and, finally, I have the two handlers defined:
private void measurableButton_Click ( object sender, RoutedEventArgs e )
{
IsMeasurable = !IsMeasurable;
OnMeasurableButtonChanged ( );
}
and
private void BuyoutButton_Click ( object sender, RoutedEventArgs e )
{
IsBuyout = !IsBuyout;
OnBuyoutButtonChanged ( );
}
In both cases, if I put a breakpoint at the OnClick, it hits. In the case of the measurableButton, the RaiseEvent goes to measurableButton_Click; in the case of the BuyoutButton, the RaiseEvent does NOT go to BuyoutButton_Click.
There is nowhere in the app an unwiring (-=) of the BuyoutButton.Click. What further could I check to discover the reason for the difference in these behaviors?

x:FieldModifierand the other doesn't. Does it work if you remove it? Also, does it work the opposite if you switch the button positions? I can't see your full UserControl code, but it's possible that you're overwriting the ClickEvent when setting the 2nd event, rather than creating a new instance of the event. – Rachel Oct 11 '11 at 16:00x:FieldModifierdoes not change the behavior. I cannot switch the button positions, they are in two completely different windows. Is it even possible to overwrite the ClickEvent withClick="method"syntax? (I am new to WPF, but aren't these still multicast delegates?) – Kelly Cline Oct 11 '11 at 16:14public event RoutedEventHandler Click. I did not realize that I had to have the exact same code in the derived class (why wouldn't it inherit?), but when I added the event to the derived class, my problem was solved. – Kelly Cline Oct 11 '11 at 16:27