未显示数据模板

本文关键字:数据 显示 | 更新日期: 2023-09-27 18:36:43

列表

框数据模板没有显示,我不知道为什么。

如果我不使用数据模板并将内容复制到控件部分本身,那很好。

我在 XAML 中不做太多绑定,我通常在代码中完成所有操作。我做错了什么?

XAML

   <UserControl x:Class="Cis.CustomControls.CisArrivalsPanel"
                 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" 
                 mc:Ignorable="d" Height="296" Width="876">
      <UserControl.Resources>
            <DataTemplate x:Key="DataTemplate">
                <ListBoxItem>
                    <StackPanel>
                        <TextBlock  Background="Blue" Text="{Binding Path=StationName}" />
                        <TextBlock  Background="Brown" Text="{Binding Path=ArrivalPlatform}" />
                    </StackPanel>
                </ListBoxItem>
            </DataTemplate>
        </UserControl.Resources>
        <Grid>
            <StackPanel Orientation="Horizontal">
                <ListBox Width="487" Margin="0,66,0,33" ItemTemplate="{StaticResource DataTemplate}">
                </ListBox>
            </StackPanel>
        </Grid>
    </UserControl>

.CS

 public partial class CisArrivalsPanel : UserControl
    {
        public CisArrivalsPanel()
        {
            InitializeComponent();
            this.DataContext = new ArrivalRowItem();
        }
    }

public class ArrivalRowItem : INotifyPropertyChanged
    {
        public ArrivalRowItem()
        {
            this.StationName = "Lincoln";
            this.ArrivalPlatform = "1";
        }

        private string _stationName;
        public string StationName
        {
            get
            {
                return _stationName;
            }
            set
            {
                _stationName = value;
                NotifyPropertyChanged("StationName");
            }
        }
        private string _arrivalPlatform;
        public string ArrivalPlatform
        {
            get
            {
                return _arrivalPlatform;
            }
            set
            {
                _arrivalPlatform = value;
                NotifyPropertyChanged("ArrivalPlatform");
            }
        }

        private DateTime _arrivalDateTime;
        public DateTime ArrivalDateTime
        {
            get
            {
                return _arrivalDateTime;
            }
            set
            {
                _arrivalDateTime = value;
                NotifyPropertyChanged("ArrivalDateTime");
            }
        }
        public event PropertyChangedEventHandler PropertyChanged;
        private void NotifyPropertyChanged(string property)
        {
            if (PropertyChanged != null)
            {
                PropertyChanged(this, new PropertyChangedEventArgs(property));
            }
        }
    }

未显示数据模板

您已经设置了所有内容,但实际上没有任何数据

ListBox ,像其他ItemsControl一样,作用于数据的集合,并为它找到的每个项目生成模板的实例。

鉴于您尚未设置ItemsSource或填充我可以看到的任何集合,您需要创建一个集合(可能是ObservableCollection)并通过绑定设置ItemsSource。然后添加一些项目,ListBox将显示它们!