Маркус, вот что я бы сделал. Укусите пулю и за 10 строчек кода получите первоклассную поддержку для выравнивания и любых других неподдерживаемых свойств. Вы можете пройтись по визуальному дереву и найти вещь PART_ * для тяжелой тонкой настройки.
Решение:
1. Класс выравниваемой колонки:
namespace AlignableCellsProject
{
public class AlignableTextColumn: DataGridTextColumn
{
protected override System.Windows.FrameworkElement GenerateElement(DataGridCell cell, object dataItem)
{
FrameworkElement element = base.GenerateElement(cell, dataItem);
element.SetValue(FrameworkElement.HorizontalAlignmentProperty, this.HorizontalAlignment);
return element;
}
protected override System.Windows.FrameworkElement GenerateEditingElement(DataGridCell cell, object dataItem)
{
FrameworkElement element = base.GenerateEditingElement(cell, dataItem);
element.SetValue(FrameworkElement.HorizontalAlignmentProperty, this.HorizontalAlignment);
return element;
}
public HorizontalAlignment HorizontalAlignment
{
get { return (HorizontalAlignment)this.GetValue(FrameworkElement.HorizontalAlignmentProperty); }
set { this.SetValue(FrameworkElement.HorizontalAlignmentProperty, value); }
}
}
}
2. Потребительский XAML:
<Window x:Class="AlignableCellsProject.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:AlignableCellsProject"
Title="MainWindow" Height="350" Width="525">
<Grid>
<DataGrid x:Name="g" AutoGenerateColumns="False">
<DataGrid.Columns>
<local:AlignableTextColumn HorizontalAlignment="Left"
Width="200" Binding="{Binding}"/>
</DataGrid.Columns>
</DataGrid>
</Grid>
</Window>
3 - код потребителя позади:
namespace AlignableCellsProject
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
this.Loaded +=
(o, e) =>
{
this.g.ItemsSource = Enumerable.Range(1, 3);
};
}
}
}