Mega Code Archive

 
Categories / C# / WPF
 

FlowDocument with TextAlignment, ColumnWidth Italic and bold font

<FlowDocument xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"   TextAlignment="Justify"    IsOptimalParagraphEnabled="True"   IsHyphenationEnabled="True"   IsColumnWidthFlexible="True"   Background="AliceBlue"   ColumnWidth="300"   ColumnGap="20">   <Paragraph>     <Italic>italic</Italic>   </Paragraph>   <Paragraph>     <Hyperlink NavigateUri="http://www.yourhost.com">website</Hyperlink>   </Paragraph>   <Paragraph>     <Bold>       bold     </Bold>   </Paragraph>   <Paragraph>     <Italic>italic</Italic> or <Italic>italic</Italic>.   </Paragraph> </FlowDocument>