Hi,
Is there any way to achieve such behavior on XamDataGrid(vol 10.3):
If user resizes the colum, all columns widths to the left are staying as before resizing and columns to the right are resized.
If user resizes the window which hosts the grid - all columns are resized proportionally.
Thanks.
Two questions related to custom column sizing:
1. Is there any event to subsribe when Vertical ScrollBar appears or dissapears on the grid? - I need to evaluate the width of vertical scrollbar for my custom sizing.
2. When resizing host window how do you achieve the grid resizing is only done when dragging is stoped?
I tried to subscribe to XamDataGrid.SizeChanged event, but it fires to often and has a huge impact on performance.
Thanks
How to access DataRecordCellArea.ActualWidth?
Thanks. I will have some questions later on.
HI.
I am following up on this forum thread.
So you require further assistance?
Sincerley, Matt Developer Support Engineer
HI,
You could wire up an event for each field
Here a code snippet:
xamDataGrid1.FieldLayouts[0].Fields[0].PropertyChanged +=new PropertyChangedEventHandler(Field0_PropertyChanged);
Sincerely, Matt Developer Support Engineer