Files
StructureHelper/StructureHelper/Windows/MainGraph/AddTable.xaml

26 lines
1.0 KiB
XML

<Window x:Class="StructureHelper.Windows.MainGraph.AddTable"
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:StructureHelper.Windows.MainGraph"
mc:Ignorable="d"
ResizeMode="CanResize"
Title="AddTable" Height="450" Width="400">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
<RowDefinition Height="50"/>
</Grid.RowDefinitions>
<DataGrid Grid.Row="0" Margin="5">
<DataGrid.Columns>
<DataGridTextColumn Width="*" Header="X"/>
<DataGridTextColumn Width="*" Header="Y"/>
</DataGrid.Columns>
</DataGrid>
<Button Grid.Row="1" Margin="5" Content="Build Graph">
</Button>
</Grid>
</Window>