Dear Support
The Scroll Bars in my DataGrid are not visible. As I understood those should be visible without an additional setup, right?
Here is my setup:
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="40" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<Button Grid.Row="0"
Content="Load Database"
Width="160"
HorizontalAlignment="Left"
Margin="2"
Click="ButtonBase_OnClick"/>
<syncfusion:SfDataGrid Grid.Row="1"
x:Name="MainDataGrid"
VerticalAlignment="Stretch">
</syncfusion:SfDataGrid>
</Grid>
MainDataGrid.ItemsSource = DBLoader.GetDataView("DYN_cyclist", false);
How can I achieve that the scroll Bars are visible?
I already tried.
ScrollViewer.HorizontalScrollBarVisibility = "Visible" but did not work so far.
T
|
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="40" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<Button Grid.Row="0"
Content="Load Database"
Width="160"
HorizontalAlignment="Left"
Margin="2"
Click="ButtonBase_OnClick"/>
<syncfusion:SfDataGrid Grid.Row="1"
x:Name="MainDataGrid"
VerticalAlignment="Stretch">
</syncfusion:SfDataGrid>
</Grid> |
That was the case. Thank you for the fast response.
BR Patrick