如何在资源字典中的datatemplate中添加事件处理程序来控制

时间:2011-09-07 07:04:56

标签: wpf event-handling datatemplate resourcedictionary

我有一个资源字典:

<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="wpfUI2.MainWindowEvents">


<DataTemplate
    x:Key="WorkspacesTemplate">
    <TabControl
        x:Name="Tab1"
        IsSynchronizedWithCurrentItem="True"
        ItemsSource="{Binding}"
        ItemTemplate="{StaticResource ClosableTabItemTemplate}"
        Margin="4"/>
</DataTemplate>
...

我想为TabControl添加一个事件处理程序。 MainWindowEvents是在没有其他类的文件中定义的类:

Namespace wpfUI2
    Public Class MainWindowEvents

    End Class
End Namespace

当我去添加像

这样的事件处理程序时
    <TabControl
        x:Name="Tab1"
        IsSynchronizedWithCurrentItem="True"
        ItemsSource="{Binding}"
        ItemTemplate="{StaticResource ClosableTabItemTemplate}"
        Margin="4"
        SelectionChanged=""
    />

并尝试在“”之间单击以创建事件我收到一条错误,指出x:Class属性指定的类必须是文件中的第一个。好吧!奇怪的是,当我手动创建处理程序时:

Namespace wpfUI2
    Public Class MainWindowEvents
        Public Sub Tab1_SelectionChanged(sender As System.Object, e As System.Windows.Controls.SelectionChangedEventArgs)

        End Sub
    End Class
End Namespace

所有内容编译都可以,但我在window.show

上获得了运行时异常

我做错了什么?

1 个答案:

答案 0 :(得分:9)

由于这个原因,我能够使它成功:

Is it possible to set code behind a resource dictionary in WPF for event handling?

我看到代码中缺少的东西,与那里的示例相比。