我有一个与flowDocument关联的wpf richtextbox。 假设从1..60开始对flowdocument中的行进行编号 richtextbox不够高,无法显示所有数字。
但是这很好,因为我可以滚动鼠标滚轮。 问题是这个程序不够滚动,如下图所示:
你可能会看到它只是到达第50行而不是第60行。 这不是与其他元素重叠的问题。
提前感谢您的帮助。 帕特里克
--- --- ADD 这是xaml
<Grid Name="grdReport_RTF" Visibility="Hidden">
<RichTextBox x:Name="rtbReport_RTF" Margin="10" BorderBrush="Gray" Background="White" Foreground="Black" IsEnabled="True" Padding="10" Style="{DynamicResource rtbStyleDocLocal}" />
</Grid>
与
<Style x:Key="rtbStyleDocLocal" TargetType="{x:Type RichTextBox}">
<Style.Resources>
<Style x:Key="{x:Type FlowDocument}" TargetType="{x:Type FlowDocument}">
<Setter Property="OverridesDefaultStyle" Value="true"/>
</Style>
<Style x:Key="{x:Type Hyperlink}" BasedOn="{StaticResource {x:Type Hyperlink}}" TargetType="{x:Type Hyperlink}">
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="true">
<Setter Property="Foreground" Value="Blue"/>
</Trigger>
<Trigger Property="IsEnabled" Value="true">
<Setter Property="Foreground" Value="Black"/>
</Trigger>
</Style.Triggers>
</Style>
</Style.Resources>
<Setter Property="MinWidth" Value="10"/>
<Style.BasedOn>
<StaticResource ResourceKey="{x:Type TextBoxBase}"/>
</Style.BasedOn>
</Style>
- ADD2 ---
我用
填充了flowdocApplication.Current.Dispatcher.Invoke(new Action(() => fdocRTB.Blocks.Clear()));
if (File.Exists(strCompleteFilename))
{
using (var sr = new StreamReader(strCompleteFilename))
{
String line = sr.ReadToEnd();
Application.Current.Dispatcher.Invoke((Action)(() => fdocRTB = AddLineToRtb(fdocRTB_Beretta, line, false, RTB_LINEHEIGHT, RTB_FONTSIZE)));
}
}
和那个
private FlowDocument AddLineToRtb(FlowDocument fdoc, string str, bool IsTitle, double lineHeight, double fontSize)
{
Paragraph par;
var run = new Run(str);
run.Foreground = Brushes.Black;
if (!IsTitle)
run.FontWeight = FontWeights.Normal;
else
run.FontWeight = FontWeights.Black;
run.FontSize = fontSize;
run.FontFamily = ffRtb;
par = new Paragraph() { LineHeight = lineHeight, FontSize = fontSize };
par.Inlines.Add(run);
Application.Current.Dispatcher.Invoke((Action)(() => fdoc.Blocks.Add(par)));
return fdoc;
}
- 加3-- 解决方案的更多线索: 如果读取的文件包含数字1..60,则向下滚动到最大效果为:
[![enter code here][3]][3]
相反,如果我通过向下滚动到最大效果是添加一些字母a ... z的行:
超过60!但不是z
答案 0 :(得分:2)
您是否确认它没有在可见区域外拉伸RTB?最简单的检查方法是在RTB上设置Height="200"
并查看滚动的工作原理。
事实上,在你的截图中,我认为我确实看到侧面有一个1px较浅的灰色边框,但没有看到底部 - 这表明控件的实际底部已经被推到了视线之外。如果你给它BorderBrush="Red"
,只是为了测试,效果会更容易确定。
默认的XAML DWIM(实际上“做我 意味着,如果我的意思是错误的”)布局可能是WPF中滚动问题的最常见原因。