我在文本框上有一个上下文菜单, 我试图将选中的属性绑绑到该文本框中带有值转换器的数据格式中的属性之一 。
我所要面对的问题非常相似, 我恳求您注意, 与此文章... < a href=" https://stackoverflow.com/ questions/ 2617122/wpf-menitem- command- conferm- confer- control- information- into- system- windows- data-error" >WPF 菜单项。 comand to ementName 结果对系统具有约束力 。 Windows. Data 错误: 4 : 无法找到源以 a > 链接到源以 < / a > 链接到源 。
在那里,Aran Mullolland提出了三种不同的解决方案。我一直在努力工作,但还没有看到实际工作的例子,那就是#2。我认为这是MVVM最友好的方法,为此,最优雅的...
这是我的Xaml
<DataTemplate x:Key="SFTemplateWithContextMenu">
<TextBlock x:Name="Field" Text="{Binding Path=FieldName}" >
<TextBlock.ContextMenu>
<!--<ContextMenu PlacementTarget="{Binding ElementName=Field}" > -->
<ContextMenu DataContext="{Binding RelativeSource={RelativeSource Mode=Self}, Path=PlacementTarget.DataContext}">
<MenuItem Header="Rename..." />
<MenuItem Header="Field Type">
<MenuItem.Resources>
<Configurator:EnumToBooleanConverter x:Key="EnumToBooleanConverter" />
</MenuItem.Resources>
<!--<MenuItem Header="String" IsCheckable="True" IsChecked="{Binding Path=PlacementTarget.DataContext.FieldType, RelativeSource={RelativeSource AncestorType={x:Type ContextMenu}}, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, Converter={StaticResource EnumToBooleanConverter}, ConverterParameter={x:Static Configurator:TypeDesc.String}, PresentationTraceSources.TraceLevel=High}"/>-->
<MenuItem Header="String" IsCheckable="True" IsChecked="{Binding Path=FieldType, RelativeSource={RelativeSource AncestorType={x:Type ContextMenu}}, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, Converter={StaticResource EnumToBooleanConverter}, ConverterParameter={x:Static Configurator:TypeDesc.String}, PresentationTraceSources.TraceLevel=High}"/>
</MenuItem>
</ContextMenu>
</TextBlock.ContextMenu>
</TextBlock>
</DataTemplate>
我使用数据模板来弹出下面的列表框...
<ListBox DnD:DragDropHelper.IsDragSource="True" Name="sourceFieldsLB" Height="238" HorizontalAlignment="Left" Margin="20,286,0,0" VerticalAlignment="Top" Width="150" ItemTemplate="{StaticResource SFTemplateWithContextMenu}" ItemsSource="{Binding Selection.SourceFields, Mode=TwoWay}" AllowDrop="True" >
我下载了Snoop(Snoop)来查看里面的情况。我尝试了几种不同的方法,但失败程度不同。
The commented out piece is the previous way I was trying to accomplish my goal. The problem there is that i was getting the error... "cannot find source for binding with reference elementname=Field " But the TextBlock shows using Snoop that its name IS Field.
从我目前这样做的方式来看,我可以看到文本块有一个本地的命名镜,它的名字是字段,这就是我所期望和想要的。上下文菜单值显示它有一个上下文菜单,上面有两个项目...是正确的。所以我点击上下文菜单,看看事情的外观和低调,看上下文菜单没有数据。
任何帮助和方向都将是巨大的。 我不知道我在这里错过了什么。 我四处看看,每当有人接近完成这项工作时,他们都提到他们找到了一些“工作”或者其他方法来完成这项工作,但永远也行不通。这需要具备工作能力...我太新了,看不到失踪的碎片。
我知道这可以做 一个真正的MVVM方式... 对不对?