-
Notifications
You must be signed in to change notification settings - Fork 170
Expand file tree
/
Copy pathMainWindow.xaml
More file actions
22 lines (22 loc) · 1.32 KB
/
Copy pathMainWindow.xaml
File metadata and controls
22 lines (22 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Window
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:StressTest"
xmlns:Views="clr-namespace:NodeNetwork.Views;assembly=NodeNetwork"
xmlns:reactiveUi="http://reactiveui.net"
x:Class="StressTest.MainWindow"
mc:Ignorable="d"
Title="MainWindow" Height="600" Width="800">
<Grid>
<Views:NetworkView x:Name="NetworkView"/>
<StackPanel HorizontalAlignment="Left" VerticalAlignment="Top">
<Button Margin="10,10,0,0" HorizontalAlignment="Left" VerticalAlignment="Top" Click="GenerateNodes">Generate 100 nodes</Button>
<Button Margin="10,10,0,0" HorizontalAlignment="Left" VerticalAlignment="Top" Click="GenerateConnections">Generate connections</Button>
<Button Margin="10,10,0,0" HorizontalAlignment="Left" VerticalAlignment="Top" Click="AutoLayout">AutoLayout</Button>
<Button Margin="10,10,0,0" HorizontalAlignment="Left" VerticalAlignment="Top" Click="Clear">Clear</Button>
<CheckBox Name="ShowOutputChecky"></CheckBox>
</StackPanel>
</Grid>
</Window>