当X:参考在WPF解决,为什么XAML元素顺序有影响吗?(When is x:Reference i

2019-07-19 03:16发布

X:参考无法得到解决后,我重新安排在XAML元素。

在这里,我提出一个工作代码。 正是这样说到按钮元素之后的菜单项中的ContextMenu和MultiBinding在Button.IsEnabled绑定成为破移动数据网格元素。 在Button.IsEnabled只有MultiBinding坏了。 它可以与注释块,并且x被替换:参考工作在该单一结合。

这两种扔XamlParseException。

  • 菜单项给出System.Xaml.XamlObjectWriterException和有关未解决的参考消息会谈。
  • MultiBinding给System.Collections.Generic.KeyNotFoundException作为内部异常。

所以,当是x:参考实际解析及为什么只有一些绑定时引用的元素来引用它的元素之后突破?

这是我的XAML:

<Window x:Class="WpfApplication1.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:xxx="clr-namespace:WpfApplication1"
        Title="MainWindow" SizeToContent="WidthAndHeight">
    <Window.Resources>
        <xxx:BoolToVisibleConverter x:Key="boolToVisibleConv"></xxx:BoolToVisibleConverter>
        <xxx:NullToFalseConverter x:Key="nullToFalseConv"></xxx:NullToFalseConverter>
        <xxx:NullsOrToFalseConverter x:Key="nullsOrToFalseConv"></xxx:NullsOrToFalseConverter>
        <ContextMenu x:Key="MyMenu">
            <MenuItem 
                Header="Menuitem enabled when row selected" 
                IsEnabled="{Binding 
                    Path=SelectedItem, 
                    Source={x:Reference dataGridElement}, 
                    Converter={StaticResource nullToFalseConv}}" />
        </ContextMenu>
    </Window.Resources>
    <StackPanel>
        <DataGrid 
            Name="dataGridElement" 
            IsReadOnly="True" />
        <Button 
            Content="Button" 
            ContextMenu="{StaticResource MyMenu}" 
            Visibility="{Binding 
                Path=IsReadOnly, 
                Source={x:Reference dataGridElement},
                Converter={StaticResource boolToVisibleConv}}">
            <Button.IsEnabled>
                <!--<Binding 
                    Path="SelectedItem" 
                    Source="{x:Reference dataGridElement}" 
                    Converter="{StaticResource nullToFalseConv}"/>-->
                <MultiBinding 
                    Converter="{StaticResource nullsOrToFalseConv}">
                    <Binding 
                        Path="SelectedItem" 
                        Source="{x:Reference dataGridElement}"/>
                    <Binding 
                        Path="SelectedItem" 
                        Source="{x:Reference dataGridElement}"/>
                </MultiBinding>
            </Button.IsEnabled>
        </Button>
    </StackPanel>
</Window>

这里是我的身后代码(无usings):

namespace WpfApplication1
{
    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
        }
    }
    public class BoolToVisibleConverter : IValueConverter
    {
        public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
        {
            if (value == null || (bool)value == false)
                return System.Windows.Visibility.Hidden;
            else
                return System.Windows.Visibility.Visible;
        }

        public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
        {
            throw new NotImplementedException();
        }
    }
    public class NullsOrToFalseConverter : IMultiValueConverter
    {
        public object Convert(object[] value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
        {
            foreach (object val in value)
            {
                if (val == null)
                    return false;
            }
            return true;
        }

        public object[] ConvertBack(object value, Type[] targetType, object parameter, System.Globalization.CultureInfo culture)
        {
            throw new NotImplementedException();
        }
    }
    public class NullToFalseConverter : IValueConverter
    {
        public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
        {
            return (value != null);
        }

        public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
        {
            throw new NotImplementedException();
        }
    }
}

Answer 1:

我想这是因为你的资源(Window.Resources)将首先创建,引用之前实例存在。 我会尝试通过的DataContext(视图模型)来解决这个问题。

<Window.DataContext>
        <yourNameSpace:YourViewModel x:Name="VieModName" />
    </Window.DataContext>
<MenuItem Header="HeadrTxt" Command="{Binding CommandInViewModelCmd}" DataContext="{x:Reference Name=VieModName}" />


Answer 2:

从MSDN摘录( http://msdn.microsoft.com/en-us/library/ee795380.aspx )。

X:Reference是在2009年XAML定义在WPF的构建,你可以使用XAML 2009年的功能,但仅限于XAML不是WPF标记编译。 标记编译XAML和XAML的BAML形式当前不支持XAML 2009年语言的关键字和功能。



Answer 3:

x:Reference必须在WPF避免。 由于此标记扩展是最近除了XAML语言(2009年)。 而且这还不是完全WPF支持。 使用ElementName在你的Binding ,而不是x:Reference

<Binding Path="SelectedItem" 
         ElementName="dataGridElement"/>

在MSDN 。



文章来源: When is x:Reference in WPF resolved and why does XAML element order affect it?