eDosStationFull/xPersonmNfo/MainWindow.xaml

40 lines
1.5 KiB
Text
Raw Normal View History

2026-08-18 12:15:26 +02:00
<Window x:Class="xPersonmNfo.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:xPersonmNfo"
mc:Ignorable="d"
Title="MainWindow" Height="450" Width="800">
<Grid>
<FlowDocumentScrollViewer xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" VerticalScrollBarVisibility="Disabled">
<FlowDocument>
<Paragraph>
<Bold>Overzicht PersID
<Run Name="PersID" />
<Run Name="Name" />
</Bold>
Some text that is not bold.
</Paragraph>
<List>
<ListItem>
<Paragraph>
<Run FontSize="24" Name="xyz">ListItem 1</Run> </Paragraph>
</ListItem>
<ListItem>
<Paragraph>ListItem 2</Paragraph>
</ListItem>
<ListItem>
<Paragraph>ListItem 3</Paragraph>
</ListItem>
</List>
</FlowDocument>
</FlowDocumentScrollViewer>
</Grid>
</Window>