-
Notifications
You must be signed in to change notification settings - Fork 1
/
invoice.xaml
53 lines (32 loc) · 1.3 KB
/
invoice.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<StackPanel
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Background="Cornsilk">
<StackPanel.Resources>
<XmlDataProvider x:Key="InvoiceData" Source="c:\invoice.xml" XPath="/invoice"/>
<DataTemplate x:Key="InvoiceTemplate">
<StackPanel Margin="5">
<TextBlock FontSize="12" FontWeight="Bold" Foreground="Black">
<TextBlock.Text><Binding XPath="itemcode"/></TextBlock.Text>
</TextBlock>
<TextBlock FontSize="12" FontWeight="Bold" Foreground="Black">
<TextBlock.Text> <Binding XPath="qty"/>
</TextBlock.Text>
</TextBlock>
<TextBlock FontSize="12" FontWeight="Bold" Foreground="Black">
<TextBlock.Text>
<Binding XPath="amount"/>
</TextBlock.Text>
</TextBlock>
</StackPanel>
</DataTemplate>
</StackPanel.Resources>
<TextBlock FontSize="14" FontWeight="Bold" Margin="10">Invoice</TextBlock>
<ListBox
Background="#fff"
BorderThickness="2"
BorderBrush="White"
Margin="10"
ItemsSource="{Binding Source={StaticResource InvoiceData}, XPath=invoiceline}"
ItemTemplate="{StaticResource InvoiceTemplate}"/>
</StackPanel>