2 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4 x:Class="SDKSample.Window1"
5 Title="Add Content to a Table">
7 <FlowDocumentScrollViewer HorizontalAlignment="Left" VerticalAlignment="Top">
10 <Button Canvas.Left="5" Click="AddRow">Add a New TableRow to the Table</Button>
13 <Table CellSpacing="5" Name="table1">
17 <TableRowGroup Name="trg1">
20 <Paragraph FontSize="14pt">TableRow</Paragraph>
26 </FlowDocumentScrollViewer>