3

我有一个 ItemsControl,其中 ItemsSource 绑定到 SystemModels 列表。它必须为列表中的每个系统生成一个用户控件。在这些用户控件中,它有一些显示系统名称、名称和位置的文本框。

我的代码创建了用户控件,但没有填充用户控件中的文本框。

看法:

<UserControl x:Name="SystemListScreen">
        <ScrollViewer Grid.Row="1">
                <ItemsControl x:Name="SystemList" ItemsSource="{Binding Path=Systems}">
                    <ItemsControl.ItemsPanel>
                        <ItemsPanelTemplate>
                            <UniformGrid Columns="4"/>
                        </ItemsPanelTemplate>
                    </ItemsControl.ItemsPanel>
                    <ItemsControl.ItemTemplate>
                        <DataTemplate DataType="SystemModel">
                        <Widgets:MultiLineButton partID="{Binding ID}"
                                                    company="{Binding ItemsSource.Company}"
                                                    typeSorter="{Binding ItemsSource.Name, ElementName=SystemList}"
                                                    typeLocation="{Binding ItemsSource.Location, ElementName=SystemList}"
                                                    buttonCommand="{Binding DataContext.navigateInspectList, ElementName=SystemListScreen}"
                                                    buttonCommandParameter="{Binding ItemsSource.ID, ElementName=SystemList}"/>
                        <!--<Button Content="{Binding ID}"/>-->
                    </DataTemplate>
                    </ItemsControl.ItemTemplate>
                </ItemsControl>
        </ScrollViewer>
</UserControl>

视图模型:

private List<SystemModel> systems;

public SystemListViewModel()
{
    Systems = new List<SystemModel>();
    Systems = SystemAPI.Instance.GetSystems();
}

public string App { get; set; }

public List<SystemModel> Systems 
{ 
    get { return systems; }
    private set 
    {
        systems = value;
        NotifyChanged("systems");
        NotifyChanged("NoResultsFound");
    } 
}

多行按钮代码:

        public static readonly DependencyProperty buttonCommandProperty = DependencyProperty.Register("buttonCommand", typeof(ICommand), typeof(MultiLineButton));
    public static readonly DependencyProperty buttonCommandParameterProperty = DependencyProperty.Register("buttonCommandParameter", typeof(Object), typeof(MultiLineButton));
    public static readonly DependencyProperty partIDProperty = DependencyProperty.Register("partID", typeof(String), typeof(MultiLineButton));
    public static readonly DependencyProperty companyProperty = DependencyProperty.Register("company", typeof(String), typeof(MultiLineButton));
    public static readonly DependencyProperty typeSorterProperty = DependencyProperty.Register("typeSorter", typeof(String), typeof(MultiLineButton));
    public static readonly DependencyProperty typeLocationProperty = DependencyProperty.Register("typeLocation", typeof(String), typeof(MultiLineButton));

    public MultiLineButton()
    { 
        this.DataContext = this;

        InitializeComponent();
    }

    public String partID
    {
        get { return (String)GetValue(partIDProperty); }
        set { SetValue(partIDProperty, value); }
    }

    public String company
    {
        get { return (String)GetValue(companyProperty); }
        set { SetValue(companyProperty, value); }
    }

    public String typeSorter
    {
        get { return (String)GetValue(typeSorterProperty); }
        set { SetValue(typeSorterProperty, value); }
    }

    public String typeLocation
    {
        get { return (String)GetValue(typeLocationProperty); }
        set { SetValue(typeLocationProperty, value); }
    }

    public ICommand buttonCommand
    {
        get { return (ICommand)GetValue(buttonCommandProperty); }
        set { SetValue(buttonCommandProperty, value); }
    }
    public Object buttonCommandParameter
    {
        get { return (Object)GetValue(buttonCommandParameterProperty); }
        set { SetValue(buttonCommandParameterProperty, value); }
    }

什么不起作用:partID="{Binding ID}", company="{Binding ItemsSource.Company}", typeSorter="{Binding ItemsSource.Name, ElementName=SystemList}", typeLocation="{Binding ItemsSource.Location, ElementName= SystemList}" 和 buttonCommandParameter="{Binding ItemsSource.ID, ElementName=SystemList}"。

但是,如果我只使用一个按钮作为 Content="{Binding ID}" 的数据模板,它可以完美工作,如果我在数据模板之外使用用户控件,它也可以工作。但它在数据模板中不起作用。

我得到的错误是:“BindingExpression 路径错误:在 'object' ''MultiLineButton' (Name='')' 上找不到 'Company' 属性。BindingExpression:Path=Company; DataItem='MultiLineButton' (Name='' ); 目标元素是 'MultiLineButton' (Name=''); 目标属性是 'company' (类型 'String')"

我该如何修复这些绑定?

4

2 回答 2

2

试试 ObservableCollection:

private ObservableCollection<SystemModel> _systems = new ObservableCollection<SystemModel>();
public ObservableCollection<SystemModel> Systems { get { return _systems; } }

public SystemListViewModel()
{
    var systems = SystemAPI.Instance.GetSystems();
    foreach (var system in systems)
    {
        Systems.Add(system);
    }
}

和 xaml 应该是:

<UserControl x:Name="SystemListScreen">
        <ScrollViewer Grid.Row="1">
                <ItemsControl x:Name="SystemList" ItemsSource="{Binding Path=Systems}">
                    <ItemsControl.ItemsPanel>
                        <ItemsPanelTemplate>
                            <UniformGrid Columns="4"/>
                        </ItemsPanelTemplate>
                    </ItemsControl.ItemsPanel>
                    <ItemsControl.ItemTemplate>
                        <DataTemplate>
                            <Widgets:MultiLineButton 
                                partID="{Binding ID}"
                                company="{Binding Company}"
                                typeSorter="{Binding Name}"
                                typeLocation="{Binding Location}"
                                buttonCommand="{Binding DataContext.navigateInspectList, 
                                    ElementName=SystemListScreen}"
                                buttonCommandParameter="{Binding ItemsSource.ID, 
                                    ElementName=SystemList}"/>
                        </DataTemplate>
                    </ItemsControl.ItemTemplate>
                </ItemsControl>
        </ScrollViewer>
</UserControl>

正如王超所说:

删除DataType="SystemModel",因为如果您只使用一种类型的 DataType 作为 DataTemplate ,则没有必要。正确的语法是DataType="vm:SystemModel"vm 在父标签中定义的地方,例如:xmlns:vm="clr-namespace:MySolution.MyVmProject.MyFolder"

另外,检查这些:

ItemsSource.从里面的 Bindings中删除,DataTemplate因为它是错误的。

仔细检查绑定中的所有名称,因为如果它们错误,则在运行时会考虑空值,而您永远不会知道。

检查您的 dataContext 确保UserControl将其 DataContext 指向具有 Systems 的类型依赖对象的正确实例。并确保它保持这种状态。

于 2013-11-12T12:53:05.157 回答
2
  1. 不确定,也许您应该DataType="SystemModel"从 DateTemplate 中删除。
  2. 或者尝试使用简单的文本框(绑定id)作为DataTemplate,看看是否还有空。
  3. 如果上面没有为您提供任何帮助,请尝试 Snoop(snoopwpf.codeplex.com) 看看发生了什么。
于 2013-11-12T14:37:21.237 回答