Привязка WPF из DataTemplate в GridViewColumn

#wpf #data-binding #listview #datatemplate

#wpf #привязка к данным #просмотр списка #datatemplate

Вопрос:

Я пытаюсь выполнить привязку из DataTemplate в myGridViewColumn. Я хочу отобразить пользовательский текст (например, ‘Caption =»Name»‘) в заголовке таблицы, но это не работает!

XAML DataTemplate:

 <Window x:Class="DataTemplateTest.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:my="clr-namespace:DataTemplateTest" Title="MainWindow" Height="350" Width="525">
    <Window.Resources>
        <DataTemplate x:Key="System3" DataType="{x:Type my:MyGridViewColumn}">
            <StackPanel Grid.Column="0" Margin="2"  Orientation="Horizontal">
                <TextBlock  Text="113 " Foreground="Red"/>
                <TextBlock  Text="{Binding Path=Caption}"/>
                <TextBlock  Text="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type my:MyGridViewColumn}}, Path=Caption}"/>
                <TextBlock  Text="{Binding RelativeSource={RelativeSource TemplatedParent}, Path=Caption}"/>
            </StackPanel>
        </DataTemplate>       
    </Window.Resources>
    <Grid>
        <ListView
            Height="auto"
            SelectionMode="Single"
            Name="lstvMain"
            >
            <ListView.View>
                <GridView>
                    <my:MyGridViewColumn HeaderTemplate="{StaticResource ResourceKey=System3}" Width="150" Caption="Name" DisplayMemberBinding="{Binding Path=Name}"/>
                    <GridViewColumn Header="Name" DisplayMemberBinding="{Binding Path=Name, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"/>
                    <GridViewColumn Header="Surname" DisplayMemberBinding="{Binding Path=Surname, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"/>
                </GridView>
            </ListView.View>
        </ListView>
    </Grid>
</Window>
  

и код C #

 #region code
using System;
using System.Collections.Generic;
using System.Windows;
using System.Windows.Controls;

namespace DataTemplateTest
{
    public partial class MainWindow
    {
        public List<User> Users = new List<User> { new User { Name = "John", Surname = "Smith" }, new User { Name = "Joe", Surname = "Brown" } };

        public MainWindow()
        {
            InitializeComponent();
            lstvMain.ItemsSource = Users;
        }
    }
    public class User : DependencyObject
    {
        public static DependencyProperty NameProperty = DependencyProperty.Register("Name", typeof(String), typeof(User), new PropertyMetadata(String.Empty));
        public String Name
        {
            get { return (String)GetValue(NameProperty); }
            set
            {
                SetValue(NameProperty, value);
                OnPropertyChanged(new DependencyPropertyChangedEventArgs(NameProperty, null, value));
            }
        }

        public static DependencyProperty SurnameProperty = DependencyProperty.Register("Surname", typeof(String), typeof(User), new PropertyMetadata(String.Empty));
        public String Surname
        {
            get { return (String)GetValue(SurnameProperty); }
            set
            {
                SetValue(SurnameProperty, value);
                OnPropertyChanged(new DependencyPropertyChangedEventArgs(SurnameProperty, null, value));
            }
        }
    }
    public class MyGridViewColumn : GridViewColumn
    {
        public static DependencyProperty CaptionProperty = DependencyProperty.Register("Caption", typeof(String), typeof(MyGridViewColumn), new PropertyMetadata(String.Empty));
        public String Caption
        {
            get { return (String)GetValue(CaptionProperty); }
            set
            {
                SetValue(CaptionProperty, value);
                OnPropertyChanged(new DependencyPropertyChangedEventArgs(CaptionProperty, null, value));
            }
        }
    }
}
#endregion
  

Любая помощь будет оценена!

Ответ №1:

Вы определили HeaderTemplate , но нет Header , поэтому шаблон не имеет DataContext

Но в любом случае, вы не сможете определить заголовок напрямую с помощью привязки, потому что GridViewColumn не наследует DataContext . Я писал в блоге о решении этой проблемы здесь.

Комментарии:

1. Большое спасибо! Эта проблема свела меня с ума, потому что я пытался использовать «RelativeSource FindAncestor», но это не возымело никакого эффекта… Странно, что столбец не принадлежит визуальному или логическому дереву. В любом случае спасибо за быстрый и полезный ответ! 🙂