Question about the Template Style of WPF RichTextBox

Source: Internet
Author: User

In the actual design of the project, the UI rendering of RichTextBox needs to be changed. In the Coding process, ContentPresenter is used in the ControlTemplate of RichTextBox and cannot be used to render the Content of RichTextBox.

See MSDN for http://msdn.microsoft.com/en-us/library/ff457769 (v = vs.95). aspx

To render Content, you only need to write PART_ContentHost to the Template.

The Code is as follows:

 

<Grid>
<RichTextBox>
<RichTextBox. Document>
<FlowDocument Background = "AntiqueWhite">
<Paragraph>
A no space anymore between it and the second paragraph?
</Paragraph>
</FlowDocument>
</RichTextBox. Document>
<RichTextBox. Template>
<ControlTemplate>
<DockPanel LastChildFill = "True">
<Label Background = "Red" Width = "50" HorizontalAlignment = "Left"> </Label>
<ScrollViewer Margin = "2"
X: Name = "PART_ContentHost"
VerticalAlignment = "Stretch"
HorizontalAlignment = "Stretch"
BorderBrush = "Transparent"
Background = "Transparent"/>
</DockPanel>
</ControlTemplate>
</RichTextBox. Template>
</RichTextBox>
</Grid>

 

:

 

 

 

 

When reprinting, please indicate the source of this article: www.cnblogs.com/tmywu

  

Author: taomi tribe

Mail: tommywu23@126.com

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.