I'm puzzled how to simply right-align some columns in a GridView without writing tons of markup for every column.

I can't use a static CellTemplate, because cell templates are ignored when you set DisplayMemberBinding at the same time (see remarks in MSDN). Without DisplayMemberBinding, I would be back at one custom cell template per column because the binding is different, and that's what I want to avoid.

So a style would be great like we can use for the header:

<GridViewColumn DisplayMemberBinding="{Binding Bla}" HeaderContainerStyle="{StaticResource RightAlignStyle}" />

However, I can't find a property to set a style for cell items.

Probably I'm missing the forest through the trees...

link|improve this question

43% accept rate
Hi, columns of what types are you using - just DataGridTextBoxColumns? – user572559 Nov 14 '11 at 11:23
Here's a similar one, wonder if it's of help: stackoverflow.com/questions/3652318/datagrid-text-alignment – user572559 Nov 14 '11 at 11:51
@Dmitry, in this case, it's read-only, so I'm using TextBlock. Very simple, that's why I want to avoid custom CellTemplates for many columns. – markus Nov 14 '11 at 12:24
Regarding the other SO question you mentioned: It looks like this solution wouldn't allow me to set the align per column, only for the whole grid. On the other hand, I'm just scratching the surface of what is possible with WPF, so maybe I overlook something obvious. Thank you very much though! – markus Nov 14 '11 at 12:30
WPF ListView does not have concept of cell. I recommend using much better UI control i.e. DataGrid for this. – AngelWPF Nov 14 '11 at 13:24
show 3 more comments
feedback

2 Answers

Markus, here's what I would do. Bite the bullet and for the price of writing 10 lines of code get yourself a first class support for alignments and any other unsupported properties. you can traverse the visual tree and look up for PART_* thing for the heavy fine tunung.

The solution is:

1. Alignable Column Class:

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. Consumer's 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 - Consumer's Code Behind:

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);
                };
        }
    }
}

link|improve this answer
Thank you very much for your work! Interesting approach, I will give this a try. Maybe I can even extend this to "guess" the correct alignment based on the type of the bound property (e. g. numeric -> right-align, text -> left-align). – markus Nov 14 '11 at 15:35
That is an interesting adjustment by all means! – user572559 Nov 14 '11 at 15:45
feedback

I am not using .Net 4.0 but this serves the purpose...

   <tk:DataGrid ItemsSource="{Binding}" IsReadOnly="True" AutoGenerateColumns="True">
        <tk:DataGrid.Resources>
            <Style x:Key="MyAlignedColumn" TargetType="{x:Type tk:DataGridCell}">
                <Setter Property="HorizontalAlignment" Value="Right"/>
                <Setter Property="HorizontalContentAlignment" Value="Left"/>
            </Style>
        </tk:DataGrid.Resources>
        <tk:DataGridTextColumn Header="Name"
                               CellStyle="{StaticResource MyAlignedColumn}"
                               Binding="{Binding Name, Mode=TwoWay}"/>
    </tk:DataGrid>
link|improve this answer
+1, I have used this. To add to this, if we want a particular column to exhibit alignment then we can set DataGridColumn.CellStyle={StaticResource CellAlignmentStyle} where CellAlignmentStyle is the key assigned to the style above. – Ganghar Nov 15 '11 at 8:10
Yep. I have edited. – AngelWPF Nov 15 '11 at 8:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.