I try to do binding from DataTemplate to myGridViewColumn. I want to display custom text (like 'Caption="Name"') in grid view header, but it doesn't work!
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>
and C# code
#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 P开发者_StackOverflow社区ropertyMetadata(String.Empty));
public String Caption
{
get { return (String)GetValue(CaptionProperty); }
set
{
SetValue(CaptionProperty, value);
OnPropertyChanged(new DependencyPropertyChangedEventArgs(CaptionProperty, null, value));
}
}
}
}
#endregion
Any help will be appreciated!
You defined a HeaderTemplate
, but no Header
, so the template has no DataContext
But anyway, you won't be able to define the header directly with a binding, because the GridViewColumn
doesn't inherit the DataContext
. I blogged about a solution to this problem here.
精彩评论