AvalonEdit 移除自身ScrollViewer (可配合外部自定义ScrollViewer 使用)

Posted 墨云

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AvalonEdit 移除自身ScrollViewer (可配合外部自定义ScrollViewer 使用)相关的知识,希望对你有一定的参考价值。

 

http://community.sharpdevelop.net/forums/p/11977/42764.aspx#42764

  1:    <Style TargetType="{x:Type AvalonEdit:TextEditor}">
  2:         <Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.WindowTextBrushKey}}" />
  3:         <Setter Property="Background" Value="{DynamicResource {x:Static SystemColors.WindowBrushKey}}" />
  4:         <Setter Property="FlowDirection" Value="LeftToRight"/>
  5:         <!-- AvalonEdit does not support RTL, so ensure we use LTR by default -->
  6:         <Setter Property="Template">
  7:             <Setter.Value>
  8:                 <ControlTemplate TargetType="{x:Type AvalonEdit:TextEditor}">
  9:                     <ContentPresenter Focusable="False"
 10:                         Content="{Binding RelativeSource={RelativeSource TemplatedParent}, Path=TextArea}"
 11:                         >
 12:                     </ContentPresenter>
 13:                 </ControlTemplate>
 14:             </Setter.Value>
 15:         </Setter>
 16:     </Style>

以上是关于AvalonEdit 移除自身ScrollViewer (可配合外部自定义ScrollViewer 使用)的主要内容,如果未能解决你的问题,请参考以下文章

AvalonEdit :TextEditor 是不是具有快速搜索/替换功能?

AvalonEdit验证语法并提示错误

使用 MVVM 两种方式绑定到 AvalonEdit 文档文本

ScintillaNET 与 AvalonEdit 为 WPF 应用程序提供脚本接口

AvalonEdit 对于选定的文本添加前缀和后缀

关于 ScrollView 中嵌套 EditText,输入多行会使整体滚动的问题