To whom it may cocern,
I am trying to show two SfRichTextBoxAdv inside a ScrollViewer. I would like to disable the SfRichTextBoxAdv's scrollbars and use the father ScrollViewer to scroll both SfRichTextBoxAdvs. In other words, I would like them to behaivour as a normal TextBox. You can see and example of the code below.
<Window x:Class="WpfApplication3.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:WpfApplication3"
xmlns:syncfusion="http://schemas.syncfusion.com/wpf"
mc:Ignorable="d"
Title="MainWindow" Height="350" Width="525">
<ScrollViewer HorizontalAlignment="Stretch" HorizontalScrollBarVisibility="Visible">
<Grid HorizontalAlignment="Stretch">
<Grid.RowDefinitions>
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
</Grid.RowDefinitions>
<syncfusion:SfRichTextBoxAdv Grid.Row="0" HorizontalAlignment="Stretch" Width="500" HorizontalScrollBarVisibility="False"></syncfusion:SfRichTextBoxAdv>
<syncfusion:SfRichTextBoxAdv Grid.Row="1" HorizontalAlignment="Stretch" Width="500" HorizontalScrollBarVisibility="False" ></syncfusion:SfRichTextBoxAdv>
</Grid>
</ScrollViewer>
</Window>
Kind regards,
Pablo