Mega Code Archive

 
Categories / VB.Net Tutorial / WPF
 

A Paragraph inside a Floater

<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"   xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"   Title=""    Height="300"    Width="300">   <Grid>     <FlowDocumentReader>       <FlowDocument>         <Paragraph>           <Floater Background="Silver">             <Paragraph>               This is a simple paragraph inside a floater.                This is a simple paragraph inside a floater.             </Paragraph>           </Floater>         </Paragraph>       </FlowDocument>     </FlowDocumentReader>         </Grid> </Window>