Hi,
I am using XamDataGrid version 7.2 for WPF.
I have n level hierarchy in my xamdatagrid.
Is there any way to hide the vertical / horizontal scrollbar ?
Thanks,
Jigar
But we have 2 Child FieldLayouts under 1 Layout then its child grid's width becomes so nerrow.
It's been posted in the forum before. You can do something like this:
<my:XamDataGrid x:Name="m_grdResult" VerticalAlignment="Stretch" HorizontalAlignment="Stretch"> <my:XamDataGrid.Resources> <Style TargetType="{x:Type my:RecordListControl}"> <Setter Property="Template"> <Setter.Value> <ControlTemplate TargetType="{x:Type my:RecordListControl}"> <ScrollViewer CanContentScroll="False" Focusable="False" HorizontalScrollBarVisibility="Disabled" VerticalScrollBarVisibility="Disabled"> <ItemsPresenter/> </ScrollViewer> </ControlTemplate> </Setter.Value> </Setter> </Style> </my:XamDataGrid.Resources> </my:XamDataGrid>