Hi,
I am adding Rows to a RadGridView in the ViewModel while the View is displayed. When the RadGridView runs out of vertical Space, I would like the user to be able to scroll, but scrolling is not possible despite the Scrollbal being visible and Scrolling Enabled.
I am adding Rows to a RadGridView in the ViewModel while the View is displayed. When the RadGridView runs out of vertical Space, I would like the user to be able to scroll, but scrolling is not possible despite the Scrollbal being visible and Scrolling Enabled.
<telerik:RadGridView
ScrollViewer.VerticalScrollBarVisibility="Visible"
ScrollViewer.CanContentScroll="True"
telerik:StyleManager.Theme="{StaticResource GreenTheme}"
ItemsSource="{Binding FilteredMessages}"
VerticalAlignment="Stretch"
ScrollMode="RealTime"
CanUserGroupColumns="False"
IsReadOnly="True">
</telerik:RadGridView>