3

XAML Dictionary でa RoutedEventon aを使用したいと考えています。Borderテンプレートが存在するクラスからのRoutedEventものですが、どうすればこれを達成できますか?

ModernWindow.cs

/// <summary>
/// Gets fired when the logo is clicked.
/// </summary>
public static readonly RoutedEvent LogoClickEvent = EventManager.RegisterRoutedEvent("LogoClickRoutedEventHandler", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(ModernWindow));

/// <summary>
/// The routedeventhandler for LogoClick
/// </summary>
public event RoutedEventHandler LogoClick 
{
    add { AddHandler(LogoClickEvent, value); }
    remove { RemoveHandler(LogoClickEvent, value); }
}

/// <summary>
/// 
/// </summary>
protected virtual void OnLogoClick() 
{
    RaiseEvent(new RoutedEventArgs(LogoClickEvent, this));
}

ModernWindow.xaml

<!-- logo -->
<Border MouseLeftButtonDown="{TemplateBinding LogoClick}" Background="{DynamicResource Accent}" Width="36" Height="36" HorizontalAlignment="Right" VerticalAlignment="Top" Margin="0,0,76,0">
    <Image Source="{TemplateBinding Logo}" Stretch="UniformToFill" />
</Border>
4

2 に答える 2

2

あなたの状況では、を使用できると思いますEventSetter。これを行うように設計されています。あなたにとっては、次のようになります。

<Style TargetType="{x:Type SomeControl}">
    <EventSetter Event="Border.MouseLeftButtonDown" Handler="LogoClick" />
    ...

</Style>

Note: EvenSetterトリガーを介して設定することはできず、テーマ リソース ディクショナリに含まれるスタイルでは使用できないため、通常は現在のスタイルの先頭に配置されます。

詳細については、次を参照してください。

MSDN の EventSetter クラス

または、で使用する必要がある場合はResourceDictionary、別の方法で行うことができます。を作成しますDependencyProperty(添付も可能)。添付の例DependencyProperty:

プロパティ定義:

public static readonly DependencyProperty SampleProperty =
                                          DependencyProperty.RegisterAttached("Sample",
                                          typeof(bool),
                                          typeof(SampleClass),
                                          new UIPropertyMetadata(false, OnSample));

private static void OnSample(DependencyObject sender, DependencyPropertyChangedEventArgs e)
{
    if (e.NewValue is bool && ((bool)e.NewValue) == true)
    {
        // do something...
    }
}

と呼ばれるプロパティの値を設定しようとするとOn Sample、必要なことを実行できます (イベントとほぼ同じです)。

イベントに応じて、プロパティの値を設定します。

<EventTrigger SourceName="MyBorder" RoutedEvent="Border.MouseLeftButtonDown">
    <BeginStoryboard>
        <Storyboard>
            <ObjectAnimationUsingKeyFrames Storyboard.TargetName="MyBorder" Storyboard.TargetProperty="(local:SampleClass.Sample)">
                <DiscreteObjectKeyFrame KeyTime="0:0:0">
                    <DiscreteObjectKeyFrame.Value>
                        <sys:Boolean>True</sys:Boolean>
                    </DiscreteObjectKeyFrame.Value>
                </DiscreteObjectKeyFrame>
            </ObjectAnimationUsingKeyFrames>
        </Storyboard>
    </BeginStoryboard>
</EventTrigger>
于 2013-08-07T05:30:07.827 に答える
2

私は最終的に解決策を見つけましInputBindingsCommands

<Border.InputBindings>
    <MouseBinding Command="presentation:Commands.LogoClickCommand" Gesture="LeftClick" />
</Border.InputBindings>

それは私が望んでいたものではありませんが、うまくいきます:)

于 2013-08-07T13:19:36.653 に答える