-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMainWindow.xaml
24 lines (24 loc) · 1.18 KB
/
MainWindow.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
<Window x:Class="DynamischWarteschlange.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:DynamischWarteschlange"
xmlns:ScottPlot="clr-namespace:ScottPlot.WPF;assembly=ScottPlot.WPF"
mc:Ignorable="d"
Title="Warteschlange" Height="450" Width="800">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="1*"/>
<RowDefinition Height="1*"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="1*"/>
<ColumnDefinition Width="1*"/>
</Grid.ColumnDefinitions>
<ScottPlot:WpfPlot x:Name="DiagramBusy" Grid.Row="0" Grid.Column="0"/>
<ScottPlot:WpfPlot x:Name="DiagramLength" Grid.Row="1" Grid.Column="0"/>
<ScottPlot:WpfPlot x:Name="DiagramWait" Grid.Row="0" Grid.Column="1"/>
<ScottPlot:WpfPlot x:Name="DiagramService" Grid.Row="1" Grid.Column="1"/>
</Grid>
</Window>