简体   繁体   中英

How to change an event's sender in WPF/XAML

I want to set the sender of an event to something other than the actual initiator of the event. Consider this simple DataTemplate for my CImage class:

<DataTemplate DataType="{x:Type er:CImage}">
    <Grid VerticalAlignment="Center" HorizontalAlignment="Center" Margin="5">
        <StackPanel Orientation="Vertical" MaxWidth="{Binding Image.Width}">
            <Image Source="{Binding Image}" MouseUp="MouseUpHandler" />
            <Label Content="{Binding ImageFile.Name}" />
            <Label>
                <TextBlock  TextWrapping="WrapWithOverflow" Text="{Binding TagsJoined}" />
            </Label>
        </StackPanel>
    </Grid>
</DataTemplate>

When the user clicks on this:

<Image Source="{Binding ImageSource}" MouseUp="MouseUpHandler" />

The "MouseUpHandler" event handler needs access to the "CImage" object of which "ImageSource" is a property, not the "Image" object to which "ImageSource" has been bound.

Is there any way to communicate this information in the event itself or do I have no choice but to have the handler look up the CImage through other means?

Sender will always be Image object, that you can't change.

However, in handler you can access DataContext of Image which will be object of CImage since DataType of DataTemplate is CImage:

private void MouseUpHandler(object sender, MouseButtonEventArgs e)
{
    CImage instance = (CImage)((Image)sender).DataContext;
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM