xaml 文件

<Window x:Class="Supplier.TrendCharts"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="产品价格趋势图" Height="500" Width="710">
    <Grid>
        <Button Content="柱状图" Name="ButColumn" HorizontalAlignment="Left" Margin="10,59,0,0" VerticalAlignment="Top" Width="75" Click="ButColumn_Click"/>
        <Button Content="饼状图" x:Name="ButPie" HorizontalAlignment="Left" Margin="10,116,0,0" VerticalAlignment="Top" Width="75" Click="ButPie_Click"/>
        <Button Content="折线图" x:Name="ButSpline" HorizontalAlignment="Left" Margin="10,178,0,0" VerticalAlignment="Top" Width="75" Click="ButSpline_Click" />
        <Grid Name="Simon">

        </Grid>
    </Grid>
</Window>
View Code

相关文章:

  • 2022-12-23
  • 2022-02-09
  • 2022-02-17
  • 2022-12-23
  • 2021-11-28
  • 2022-12-23
  • 2022-12-23
  • 2022-01-10
猜你喜欢
  • 2021-05-26
  • 2021-08-14
  • 2021-12-26
  • 2022-02-04
  • 2021-05-24
  • 2021-11-18
  • 2022-12-23
相关资源
相似解决方案