博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
WPF 柱状图显示数据
阅读量:4920 次
发布时间:2019-06-11

本文共 1641 字,大约阅读时间需要 5 分钟。

<Window x:Class="Wpf180706.Window9"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="Window9" Height="300" Width="300">
    <Grid>
        <ListBox Name="listBox">
            <ListBox.ItemTemplate>
               
<DataTemplate>
                    <Grid Margin="5">
                        <Grid.ColumnDefinitions>
                            <ColumnDefinition></ColumnDefinition>
                            <ColumnDefinition Width="Auto"></ColumnDefinition>
                        </Grid.ColumnDefinitions>
                        <Rectangle Fill="Gray" Width="{Binding Price}"></Rectangle>
                        <TextBlock Text="{Binding Year}"></TextBlock>
                        <TextBlock Text="{Binding Price}" Grid.Column="1"></TextBlock>
                    </Grid>
                    
                </DataTemplate>
            </ListBox.ItemTemplate>
        </ListBox>
    </Grid>

</Window>

using System;

using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
namespace Wpf180706
{
    /// <summary>
    /// Interaction logic for Window9.xaml
    /// </summary>
    public partial class Window9 : Window
    {
        public Window9()
        {
            InitializeComponent();
            listBox.ItemsSource = lst;
        }
        public List<MyClass> lst = new List<MyClass>()
        {
            new MyClass(){ Price=120, Year=1990},
            new MyClass(){ Price=50, Year=1950},
            new MyClass(){ Price=220, Year=1998},
            new MyClass(){ Price=150, Year=1992},
            new MyClass(){ Price=100, Year=1991},
            new MyClass(){ Price=190, Year=1999}
        };
        
    }
    public class MyClass
    {
        public int Price { get; set; }
        public int Year { get; set; }
    }
}

转载于:https://www.cnblogs.com/dxmfans/p/9434615.html

你可能感兴趣的文章
继承之super关键字的使用
查看>>
XML - 报表数据的新大陆
查看>>
echart在X轴下方添加字
查看>>
Map集合的两种取出方式
查看>>
GridView,Repeater增加自动序号列
查看>>
SMO算法精解
查看>>
第k小元素学习记录
查看>>
avi文件格式详解【转】
查看>>
django
查看>>
Java学习从入门到精通
查看>>
查找目录下的所有文件中是否含有某个字符串 linux
查看>>
2018年各大互联网前端面试题四(美团)
查看>>
一起学Python:字符串介绍
查看>>
学习笔记:树状数组
查看>>
洛谷P1772 [ZJOI2006]物流运输 题解
查看>>
CF519E A and B and Lecture Rooms
查看>>
python-redis之数据类型二
查看>>
Java类加载机制
查看>>
数据库的最简单实现
查看>>
循环单链表实现
查看>>