You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
<Window x:Class="Tutorial.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:Tutorial"
|
|
|
|
|
mc:Ignorable="d"
|
|
|
|
|
Title="MainWindow" Height="450" Width="800">
|
|
|
|
|
<Grid>
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
|
|
|
|
|
<StackPanel Grid.Column="0" Orientation="Vertical" Margin="5">
|
|
|
|
|
<Button x:Name="btnLines" Content="Lines" Margin="3" Click="btnLines_Click"/>
|
|
|
|
|
<Button x:Name="btnColumns" Content="Columns" Margin="3" Click="btnColumns_Click"/>
|
|
|
|
|
<Button x:Name="btnStackedColumns" Content="Stacked Columns" Margin="3" Click="btnStackedColumns_Click"/>
|
|
|
|
|
<Button x:Name="btnRows" Content="Rows" Margin="3" Click="btnRows_Click"/>
|
|
|
|
|
<Button x:Name="btnStackedArea" Content="Stacked Area" Margin="3" Click="btnStackedArea_Click"/>
|
|
|
|
|
<Button x:Name="btnStepLine" Content="Step Line" Margin="3" Click="btnStepLine_Click"/>
|
|
|
|
|
<Button x:Name="btnScatter" Content="Scatter" Margin="3" Click="btnScatter_Click"/>
|
|
|
|
|
<Button x:Name="btnBubble" Content="Bubble" Margin="3" Click="btnBubble_Click"/>
|
|
|
|
|
<Button x:Name="btnFinancial" Content="Financial" Margin="3" Click="btnFinancial_Click"/>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
</Grid>
|
|
|
|
|
</Window>
|