English 中文(简体)
找不到引用元素的绑定源Name=Field
原标题:Cannot find sourcefor binding with reference ElementName=Field

我在文本框上有一个上下文菜单, 我试图将选中的属性绑绑到该文本框中带有值转换器的数据格式中的属性之一 。

我所要面对的问题非常相似, 我恳求您注意, 与此文章... < 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 > 链接到源 。

在那里,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方式... 对不对?

问题回答

Bryce, 主要问题是上下文菜单不是标准视觉树的一部分, 他们唯一的真正联系就是通过放置目标属性。 所以, 通常最好尽快把它连接起来。 所以...

给定视图模式

public class ViewModel
{
    public string Field { get; set; }
    public string FieldType { get; set; }
}

和主窗口

<Window x:Class="ContextMenuSample.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow" Height="350" Width="525">
    <Grid>
        <TextBlock Text="{Binding Field}">
            <TextBlock.ContextMenu>
                <ContextMenu DataContext="{Binding RelativeSource={RelativeSource Self}, Path=PlacementTarget.DataContext}">
                    <MenuItem Header="{Binding FieldType}" />
                </ContextMenu>
            </TextBlock.ContextMenu>
        </TextBlock>
    </Grid>
</Window>

和一种抗毒共聚物(App.xaml.cs)

using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Windows;

namespace ContextMenuSample
{
    /// <summary>
    /// Interaction logic for App.xaml
    /// </summary>
    public partial class App : Application
    {
        protected override void OnStartup(StartupEventArgs e)
        {
            base.OnStartup(e);

            var shell = new MainWindow();
            shell.DataContext = new ViewModel { Field = "FirstName", FieldType = "String" };
            shell.Show();
        }
    }
}

您可以看到上下文菜单的数据连接线被正确连接到

<ContextMenu DataContext="{Binding RelativeSource={RelativeSource Self}, Path=PlacementTarget.DataContext}">

并且你应该得到一个良好的背景菜单, 和维瓦摩尔的基本对话。





相关问题
WPF convert 2d mouse click into 3d space

I have several geometry meshes in my Viewport3D, these have bounds of (w:1800, h:500, d:25). When a user clicks in the middle of the mesh, I want the Point3D of (900, 500, 25)... How can I achieve ...

Editing a xaml icons or images

Is it possible to edit a xaml icons or images in the expression design or using other tools? Is it possible to import a xaml images (that e.g you have exported) in the expression designer for editing?...

WPF: writing smoke tests using ViewModels

I am considering to write smoke tests for our WPF application. The question that I am faced is: should we use UI automation( or some other technology that creates a UI script), or is it good enough to ...

WPF - MVVM - NHibernate Validation

Im facing a bit of an issue when trying to validate a decimal property on domain object which is bound to a textbox on the view through the viewmodel. I am using NHibernate to decorate my property on ...

How do WPF Markup Extensions raise compile errors?

Certain markup extensions raise compile errors. For example StaticExtension (x:Static) raises a compile error if the referenced class cannot be found. Anyone know the mechanism for this? Is it baked ...

WPF design-time context menu

I am trying to create a custom wpf control, I m wondering how I can add some design-time features. I ve googled and can t seem to get to my goal. So here s my simple question, how can I add an entry ...

How to combine DataTrigger and EventTrigger?

NOTE I have asked the related question (with an accepted answer): How to combine DataTrigger and Trigger? I think I need to combine an EventTrigger and a DataTrigger to achieve what I m after: when ...

热门标签