How to change Autogeneratedcolumn text alignment

donL

I am trying to figure out how to change the text alignment of an auto generated column in code.

    Private Sub dgBook_AutoGeneratingColumn(sender As System.Object, e As System.Windows.Controls.DataGridAutoGeneratingColumnEventArgs) Handles dgBook.AutoGeneratingColumn
        If e.PropertyType = GetType(DateTime) Then
            Dim dataGridTextColumn As DataGridTextColumn = TryCast(e.Column, DataGridTextColumn)
            If dataGridTextColumn IsNot Nothing Then
                dataGridTextColumn.Binding.StringFormat = "{0:d}"
            End If
        End If

        If e.PropertyName = "Amount" Then
            Dim dataGridTextColumn As DataGridTextColumn = TryCast(e.Column, DataGridTextColumn)
            If dataGridTextColumn IsNot Nothing Then
                dataGridTextColumn.Binding.StringFormat = "{0:#,##0.00;(#,##0.00)}"
                'I tried the next line for testing but it did not work
                dataGridTextColumn.SetValue(TextBox.TextAlignmentProperty, TextAlignment.Center)
            End If
        End If
     End Sub
donL

So what I ended up doing was setting up a style in the XAML WPF code

<Window.Resources>
    <Style TargetType="DataGridCell" x:Key="rightAlignCell">
        <Setter Property="HorizontalAlignment" Value="Right"></Setter>
    </Style>
</Window.Resources>

And then I set the cell style to that style in the code behind.

Private Sub datagrid1_AutoGeneratingColumn(sender As System.Object, e As System.Windows.Controls.DataGridAutoGeneratingColumnEventArgs) Handles datagrid1.AutoGeneratingColumn
    If e.PropertyName = "Amount" Then
        Dim dataGridTextColumn As DataGridTextColumn = TryCast(e.Column, DataGridTextColumn)
        If dataGridTextColumn IsNot Nothing Then
            dataGridTextColumn.Binding.StringFormat = "{0:#,##0.00;(#,##0.00)}"
        End If
        e.Column.CellStyle = TryCast(FindResource("rightAlignCell"), Style)
    End If
end sub

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Change the text alignment for Eureka TextRow

From Dev

How to dynamically change element alignment?

From Dev

JSF how to change alignment of link

From Dev

How to change Razor CheckboxFor alignment

From Dev

How to dynamically change element alignment?

From Dev

how change text direction(not paragraph alignment) in document in apache poi word?(XWPF)

From Dev

Flutter: How can I change the Alignment of a Text in a Textfield programmatically via buttons?

From Dev

how change text direction(not paragraph alignment) in document in apache poi word?(XWPF)

From Java

How to change Button Title Alignment in Swift?

From Dev

How to change alignment of displayed equations in IPython Notebook?

From Dev

How to change control alignment depending on available space?

From Dev

how to change the alignment of check boxes in html

From Dev

How do I change alignment of a button in java?

From Dev

how to change signs gravity or alignment in html?

From Dev

How to change alignment of combobox's dropdown button?

From Java

How to set same alignment for these two text

From Dev

How to adjust the alignment of placeholder text in input box?

From Dev

How to justify text right alignment in python

From Dev

How to overlay text on image without alignment issue

From Dev

How to adjust text alignment to both corners of a textview

From Dev

Change Label Text Alignment in App Inventor 2 code block

From Dev

Can't change datagrid text alignment (devexpress grid control)

From Dev

Can't change datagrid text alignment (devexpress grid control)

From Dev

How do you double space text and keep the text alignment at the top?

From Dev

How to change the vertical alignment line in matlab code editor?

From Dev

how do i change the alignment of yii framework pager?

From Dev

How to do update in a common place to change the header alignment of jqGrid

From Dev

How do I change the print alignment for individual columns in DataTables?

From Dev

iOS: how to change a label alignment based on screen variation

Related Related

  1. 1

    Change the text alignment for Eureka TextRow

  2. 2

    How to dynamically change element alignment?

  3. 3

    JSF how to change alignment of link

  4. 4

    How to change Razor CheckboxFor alignment

  5. 5

    How to dynamically change element alignment?

  6. 6

    how change text direction(not paragraph alignment) in document in apache poi word?(XWPF)

  7. 7

    Flutter: How can I change the Alignment of a Text in a Textfield programmatically via buttons?

  8. 8

    how change text direction(not paragraph alignment) in document in apache poi word?(XWPF)

  9. 9

    How to change Button Title Alignment in Swift?

  10. 10

    How to change alignment of displayed equations in IPython Notebook?

  11. 11

    How to change control alignment depending on available space?

  12. 12

    how to change the alignment of check boxes in html

  13. 13

    How do I change alignment of a button in java?

  14. 14

    how to change signs gravity or alignment in html?

  15. 15

    How to change alignment of combobox's dropdown button?

  16. 16

    How to set same alignment for these two text

  17. 17

    How to adjust the alignment of placeholder text in input box?

  18. 18

    How to justify text right alignment in python

  19. 19

    How to overlay text on image without alignment issue

  20. 20

    How to adjust text alignment to both corners of a textview

  21. 21

    Change Label Text Alignment in App Inventor 2 code block

  22. 22

    Can't change datagrid text alignment (devexpress grid control)

  23. 23

    Can't change datagrid text alignment (devexpress grid control)

  24. 24

    How do you double space text and keep the text alignment at the top?

  25. 25

    How to change the vertical alignment line in matlab code editor?

  26. 26

    how do i change the alignment of yii framework pager?

  27. 27

    How to do update in a common place to change the header alignment of jqGrid

  28. 28

    How do I change the print alignment for individual columns in DataTables?

  29. 29

    iOS: how to change a label alignment based on screen variation

HotTag

Archive