-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathWindow2.axaml
More file actions
24 lines (24 loc) · 833 Bytes
/
Copy pathWindow2.axaml
File metadata and controls
24 lines (24 loc) · 833 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<Window xmlns="https://github.com/avaloniaui"
xmlns:oxy="http://oxyplot.org/avalonia"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="MemoryTest.Window2"
xmlns:local="clr-namespace:MemoryTest"
x:DataType="local:Window2"
MinWidth="500" MinHeight="300">
<Grid>
<ScrollViewer>
<ItemsControl ItemsSource="{Binding .}">
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Vertical" />
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
<ItemsControl.ItemTemplate>
<DataTemplate>
<oxy:PlotView Model="{Binding}" Height="300" Width="500"/>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
</ScrollViewer>
</Grid>
</Window>