0

これは、ここでの私の質問のフォローアップです。InkPresenterはユーザーに最も近いものですが、//MouseDownイベントは要素によって受信されているようです。誰かがそれがなぜであるか知っていますか?MouseMoveMouseUpImage

編集:質問を明確にしなかった場合は申し訳ありません:

InkPresenterの兄弟である、にイベントハンドラーをアタッチしましたImageZIndexのを2に設定しましたInkPresenter(他の要素には0がありますZIndex)。イベントハンドラーが画像によって受信される理由がわかりません。ZIndex最も高い要素がユーザーに最も近いと仮定しました。したがって、ユーザーによって生成された//イベントを最初に受信しMouseDownますMouseMoveMouseUp、この場合Imageはそれらを受信します。

私のコードは次のとおりです。

CustomImage.cs

[TemplatePart(Name="PART_InkPresenter",Type=typeof(InkPresenter))]
[TemplatePart(Name="PART_Image",Type=typeof(Image))]
public class CustomImage : Control
{
    public static DependencyProperty SourceProperty;

    public string Source
    {
        get { return (string)GetValue(SourceProperty); }
        set { SetValue(SourceProperty,value); }
    }

    private InkPresenter _presenter;
    private Image _image;


    static CustomImage()
    {
        DefaultStyleKeyProperty.OverrideMetadata(typeof(CustomImage),
                new FrameworkPropertyMetadata(typeof(CustomImage)));

        SourceProperty = DependencyProperty.Register("Source",
                typeof(string), typeof(CustomImage));
    }

    public override void OnApplyTemplate()
    {
        base.OnApplyTemplate();
        _presenter = base.GetTemplateChild("PART_InkPresenter") as InkPresenter;
        _image = base.GetTemplateChild("PART_Image") as Image;

        _presenter.MouseDown += new MouseButtonEventHandler(_presenter_MouseDown);
        _presenter.MouseMove += new MouseEventHandler(_presenter_MouseMove);
        _presenter.MouseUp += new MouseButtonEventHandler(_presenter_MouseUp);


    }

    void _presenter_MouseUp(object sender, MouseButtonEventArgs e)
    {
        // ...
    }

    void _presenter_MouseMove(object sender, MouseEventArgs e)
    {
        // ...
    }

    void _presenter_MouseDown(object sender, MouseButtonEventArgs e)
    {
       // ...
    }

Generic.xaml

<ResourceDictionary
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="clr-namespace:CustomImage">
    <Style TargetType="{x:Type local:CustomImage}">
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="{x:Type local:CustomImage}">
                    <ControlTemplate.Resources>
                        <local:StringtoImageSource x:Key="ImageSourceConverter"/>
                    </ControlTemplate.Resources>
                    <Canvas Width="{TemplateBinding Width}" 
                            Height="{TemplateBinding Height}">               
                         <Image x:Name="PART_Image" 
                                Width="{TemplateBinding Width}" 
                                Height="{TemplateBinding Height}" Source="{Binding 
                                 RelativeSource={RelativeSource TemplatedParent}, 
                                 Path=Source, 
                                 Converter={StaticResource ImageSourceConverter}}"/>
                        <InkPresenter Canvas.ZIndex="2"  
                                x:Name="PART_InkPresenter" 
                                Width="{TemplateBinding Width}" 
                                Height="{TemplateBinding Height}"/>
                    </Canvas>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>
</ResourceDictionary>
4

1 に答える 1

1

彼らは他の何かによって処理されていないからですか?誰もイベントを処理しない場合 (e.Handledに設定true)、WPF ビジュアル ツリーをトラバースし続けます。それが、ルーティング イベントが行うべきことです。

何かがそれらを処理する必要があるかどうかを知るのに十分な情報を実際に提供していません。

于 2009-07-22T10:32:30.793 に答える