Hi,
How can i change the width of the expansion indicator both at the header/cell control. If i set the width of the cell to a smaller one i see the other columns do no re-arrange, so possible there is a static one time binding, can you tell how this can be achieved?
Thanks,
Rohit
Sorry forgot to mention i am using xamgrid
Hello Rohit,
I was looking into your description and I could suggest you to set a style for the RowSelectorCellControl and change the Width property there:
<Style TargetType="{x:Type igPrim:RowSelectorCellControl}">
<Setter Property="Width" Value="100"/>
</Style>
This will rearrange the other columns accordingly.