How to remove white space in datagrid

Sowvik Roy

Datagrid in Wpf

In this picture I had used Data grid with AutogeneratedColumn=false

Now how do I remove the white space in this Datagrid.

Dennis

Set fill width (*) for the last column:

<DataGrid.Columns>
    <!-- The number of columns -->
    <!-- The last column -->
    <DataGridTextColumn Width="*"/>
</DataGrid.Columns>

Note, that if you want to share space fill between several columns, you have to set relative fill width:

<DataGrid.Columns>
    <!-- The number of columns -->
    <DataGridTextColumn Width="40*"/>
    <DataGridTextColumn Width="20*"/>
</DataGrid.Columns>

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Remove white space from DataGrid

From Dev

how to remove white space on the top

From Dev

how to remove extra white space

From Dev

How to remove leading white space

From Dev

How to remove unnecessary white space and sort in a datagrid from csv file, using C#?

From Dev

How to remove white space between two images

From Dev

How to remove unwanted white space in CSS

From Dev

HTML: white space around elements, how to remove?

From Dev

Javascript - How to remove the white space at the start of the string

From Dev

how to remove white space in justified css

From Dev

How to remove white space between nested divs

From Dev

How to remove a specific white space in a string python

From Dev

How to remove extra white space in jQuery DataTables

From Dev

How to remove white space between div elements

From Dev

how to remove white space in select 2

From Dev

What is this big white space and how to remove?

From Dev

How to remove white space below the content

From Dev

how to remove white space in td tag?

From Dev

How to remove a specific white space in a string python

From Dev

How to remove white space at the end of wordpress website?

From Dev

How to remove white space from a number

From Dev

How to remove the extra white space at the bottom of the panels

From Dev

How to remove unwanted white space in CSS

From Dev

How to remove extra white space in jQuery DataTables

From Dev

how to remove white space from both side?

From Dev

Is there something that looks like white space but it is not and how to remove it?

From Dev

How to remove white space at the top of page

From Dev

How to remove white space in my website

From Dev

How to remove white space under webpage

Related Related

HotTag

Archive