Hello,
I can't ever seem to get the vertical scroll to appear. The regular MS Windows grid scrolls always appears. This control is being added to another grid inside a RadTabItem. I would like the scroll to kick in when ever the screen size requires it without having to set hard Heights and Widths. Thanks.
I can't ever seem to get the vertical scroll to appear. The regular MS Windows grid scrolls always appears. This control is being added to another grid inside a RadTabItem. I would like the scroll to kick in when ever the screen size requires it without having to set hard Heights and Widths. Thanks.
| <UserControl x:Class="XXXXXXXXXX_Controls.ServerControlLog" |
| xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
| xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
| xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
| xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
| mc:Ignorable="d" |
| xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"> |
| <Grid> |
| <Grid.RowDefinitions> |
| <RowDefinition Height="Auto" /> |
| <RowDefinition Height="Auto" /> |
| </Grid.RowDefinitions> |
| <WrapPanel Grid.Row="0" Margin="10"> |
| <telerik:RadButton Content="Start Server" Margin="5" Height="23" HorizontalAlignment="Left" Name="btnStartServer" Click="btnStartServer_Click" VerticalAlignment="Top" Width="75" /> |
| <Label Name="lblMessage" Margin="5"></Label> |
| </WrapPanel> |
| <telerik:RadGridView HorizontalAlignment="Left" Name="radGridServerLog" VerticalAlignment="Top" Grid.Row="1" ScrollViewer.VerticalScrollBarVisibility="Visible" /> |
| </Grid> |
| </UserControl> |