我有一个文件GraphView.XAML。我已将Resources部分拆分为两个ResourceDictionary文件(Vertices.xaml和Edges.xaml),我将它们合并如下:
GraphView.XAML
<Window x:Class="graph_app.GraphView" ... >
<Grid>
<Grid.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="Design/Vertices.xaml"/>
<ResourceDictionary Source="Design/Edges.xaml"/>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Grid.Resources>
...
<\Grid>
如果不拆分代码有效,但如果拆分我在Vertices.xaml中收到错误,告诉我方法ChangeVertexColor_OnClick无法解析:
顶点.XAML
<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:graph_app">
<Style TargetType="{x:Type controls:VertexControl}">
<EventSetter Event="MouseDoubleClick" Handler="ChangeVertexColor_OnClick"/>
^^^cannot resolve symbol^^^^
</Style>
</ResourceDictionary>
我再说一遍,如果放在一个 XAML 中,代码就可以工作。此外,ChangeVertexColor_OnClick方法是在GrapView.xaml.cs中实现的,因此它应该被识别,但是在拆分之后,Vertices.xaml不知何故失去了对x:Class的跟踪(我想它忽略了它的存在,因为它是一个单独的文件)。
如何从分离的 ResourcesDictionary 文件中访问ChangeVertexColor_OnClick ?
谢谢