将数据绑定到自定义用户控件



我想绑定 ObservableCollection 我的自定义用户控件,但是当我想添加新元素并且我几乎完成了,但是当我想添加新元素来收集时,我的应用程序无缘无故崩溃。我想也许是变量不一致。但是我带着nothig尝试使用对象/字符串/字符串。也许我一开始做错了什么?

自定义用户控件 XAML

<UserControl x:Class="backtrackPrototype.checklistItem"
    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"
    mc:Ignorable="d"
    FontFamily="{StaticResource PhoneFontFamilyNormal}"
    FontSize="{StaticResource PhoneFontSizeNormal}"
    Foreground="{StaticResource PhoneForegroundBrush}"
    d:DesignHeight="80" d:DesignWidth="480">
    <Grid x:Name="LayoutRoot">
        <TextBlock 
            x:Name="label" 
            MaxHeight="407"  
            HorizontalAlignment="Left" 
            Margin="0,17,0,16" 
            VerticalAlignment="Center"
            Text="{Binding Path=Title, ElementName=checklistItem}"/>
        <CheckBox x:Name="checkbox" HorizontalAlignment="Right" VerticalAlignment="Center" Checked="checkbox_Checked" Unchecked="checkbox_Unchecked" />
    </Grid>
</UserControl>

自定义用户控件

public partial class checklistItem : UserControl 
{ 
      public string Title
      {
          get { return (string)this.GetValue(TitleProperty); }
          set { this.SetValue(TitleProperty, value); } 
      }
      // Using a DependencyProperty as the backing store for MyProperty.  This enables animation, styling, binding, etc...
      public static readonly DependencyProperty TitleProperty = DependencyProperty.Register("Title", typeof(string), typeof(checklistItem), new PropertyMetadata(0));  
      public checklistItem() 
      {
            InitializeComponent();
      }
      public bool isChecked() 
      {
          if ((bool)checkbox.IsChecked) return true;
          return false;
      }
      private void checkbox_Checked(object sender, RoutedEventArgs e) 
      {
          //title.Foreground = Application.Current.Resources["PhoneAccentColor"];
          label.Foreground = (SolidColorBrush)Application.Current.Resources["PhoneAccentBrush"];
      }
      private void checkbox_Unchecked(object sender, RoutedEventArgs e) 
      {
          label.Foreground = new SolidColorBrush(Colors.White);
      }
}

主页中的 XAML

<ListBox Height="479" ItemsSource="{Binding}" x:Name="CheckList">
    <ListBox.ItemTemplate>
        <DataTemplate>
            <local:checklistItem Title="{Binding Title}" Width="397"/>
        </DataTemplate>
    </ListBox.ItemTemplate>
</ListBox

主页中的 CS公共可观察集合列表项 = 新的可观察集合();

ListItem item = new ListItem("Nowe",false);
ListItems.Add(item);
CheckList.DataContext = ListItems;

最后列出

public class ListItem 
{
    public string Title { get; set; }
    public bool Checked { get; set; }
    public ListItem(string title, bool isChecked=false) 
    {
        Title = title;
        Checked = isChecked;
    }  
}

我需要一个以新鲜的头脑看待代码的人。谢谢。


更新:

更重要的是,对于访问我的自定义控件中的控件,我在该问题中使用了第一个 anwser。我还更新了我的用户控制 XAML。


更新 V2

当我使用<TextBox Title="{Binding Title}" Width="397"/>而不是local:checklistItem时,它工作得很好。


更新 V3

好的,事实证明我没有将正确的数据上下文添加到我的用户控件中,所以现在清单项构造函数如下所示

public checklistItem() {
    InitializeComponent();
    this.DataContext = this;
}

控件正在正确添加,但现在标题的绑定不起作用。因为当我硬编码一些标题时,它可以工作,绑定不。但相同的绑定适用于默认文本框。

我认为您需要设置itemsSource而不是DataContext。在列表框上设置 DataContext 不会生成模板化项

ItemsSource="{Binding}"

来自 Xaml和改变

CheckList.DataContext = ListItems;

CheckList.ItemsSource = ListItems;

我认为您在 XAML 中的绑定可能是不正确的。绑定中的元素名称是 LayoutRoot,它是网格的名称,而不是用户控件的名称。

它可能正在尝试在网格上找到一个名为 Title 的属性,但它没有。

相关内容

  • 没有找到相关文章

最新更新