我试图在放置在另一个userControl中的ItemsControl布局中显示项目的集合,但是它不会显示任何内容,这是我尝试的操作,因为我知道大多数代码都是从工作示例复制而来,而我无法找出什么是错误的,而不是wpf中的经验:
MainWindow.xaml
<Window x:Class="cafeteria.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:cafeteria"
xmlns:local1="clr-namespace:cafeteria._shared"
xmlns:_pages="clr-namespace:cafeteria._pages"
mc:Ignorable="d"
ResizeMode="NoResize"
WindowStyle="None"
WindowStartupLocation="CenterScreen"
Title="منظومة الكافتريا "
WindowState="Maximized">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="1*"></RowDefinition>
<RowDefinition Height="19*"></RowDefinition>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="12*"></ColumnDefinition>
<ColumnDefinition Width="3*"></ColumnDefinition>
</Grid.ColumnDefinitions>
<StackPanel Grid.Column="1" Grid.RowSpan="2" Background="#be2116" Orientation="Vertical">
<!-- add the control buttons-->
<local1:ApplicationControls></local1:ApplicationControls>
<!--app name-->
<Grid Margin="0,20,0,0">
<Grid.ColumnDefinitions>
<ColumnDefinition></ColumnDefinition>
<ColumnDefinition></ColumnDefinition>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
</Grid.RowDefinitions>
<Image Source="./_Content/logo.png" Grid.ColumnSpan="2" Height="80"></Image>
<TextBlock FontSize="20" Grid.Column="1" Grid.Row="1" FontWeight="Bold" TextAlignment="Left" Foreground="White">منظومة</TextBlock>
<TextBlock FontSize="20" Margin="0,0,10,0" Grid.Column="0" Grid.Row="1" FontWeight="Light" TextAlignment="right" Foreground="White">الكافتريا</TextBlock>
</Grid>
<local1:SideBar Margin="0,50,0,0"></local1:SideBar>
</StackPanel>
<StackPanel Background="#fe8d00" Grid.Row="0" Grid.Column="0"></StackPanel>
<_pages:Food Grid.Column="0" Grid.Row="1"></_pages:Food>
</Grid>
</Window>
食品用户控制xaml文件
<UserControl x:Class="cafeteria._pages.Food"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:cafeteria._pages"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800">
<Grid>
<ItemsControl ItemsSource="{Binding products}">
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<UniformGrid Columns="3"/>
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
<ItemsControl.ItemTemplate>
<DataTemplate>
<TextBlock Foreground="Black" Text="{Binding Path=name}"></TextBlock>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
</Grid>
</UserControl>
Food.xaml.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace cafeteria._pages
{
/// <summary>
/// Interaction logic for Food.xaml
/// </summary>
public partial class Food : UserControl
{
public List<product> products;
public Food()
{
this.products = new List<product>()
{
new product{ name = "chips"},
new product{ name = "pipsi"},
};
InitializeComponent();
}
}
public class product
{
public string name { get; set; }
}
}
答案 0 :(得分:0)
由于不应从继承的DataContext(例如,Window的视图模型)中提供要在UserControl的ItemsControl中显示的数据,而是由控件的代码逻辑在内部进行检索,因此可以直接在代码中设置ItemsSource属性后面。
最简单的方法是将一个x:Name
分配给ItemsControl
<ItemsControl x:Name="itemsControl">
,然后在调用InitializeComponent之后访问后面代码中的生成字段:
itemsControl.ItemsSource = new List<product>()
{
new product{ name = "chips" },
new product{ name = "pipsi" },
};
请注意,在任何情况下都不应将UserControl的DataContext设置为其自身。万一您稍后将可绑定属性添加到控件,则以这种方式设置DataContext将破坏其属性与继承的DataContext中视图模型对象的属性的任何绑定。像
<_pages:Food MyProperty="{Binding SomeViewModelProperty}"/>
将无法按预期工作。
答案 1 :(得分:-1)
为了使您的示例正常工作,您可以例如将控件绑定到自身。
<UserControl x:Class="cafeteria._pages.Food"
... DataContext="{Binding RelativeSource={RelativeSource Self}}">
这样,您可以直接绑定到包含的属性。为此,您需要将您的产品字段设置为属性。
<ItemsControl ItemsSource="{Binding Products}">
就像已经提到的Clemens一样,将控制绑定到自身并不是一个好方法,我只是想指出您的样本中缺少的东西才能起作用。
或者,您还可以通过后面的代码(即,在ItemsCotrol.Loaded中)设置ItemsSource属性。
话虽如此,我认为将加载数据的逻辑转移到单独的类并从窗口绑定结果会更好。