WPF ListView实时更新数据

csharp 复制代码
<Window x:Class="TestListView.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:TestListView"
        mc:Ignorable="d"
        Title="MainWindow" Height="450" Width="800">
    <Grid>
        <ListView 
            Width="300"
            Height="500" 
            BorderBrush="Black"
            BorderThickness="1"
            Name="UserList">
            <ListView.View>
                <GridView>
                    <GridViewColumn Header="状态名" Width="200"
                                   DisplayMemberBinding="{Binding NameLt}"></GridViewColumn>
                    <GridViewColumn Header="状态"  Width="100"
                                   DisplayMemberBinding="{Binding StatueLt}"></GridViewColumn>
                </GridView>
            </ListView.View>
        </ListView>

        <Button Width="200" Height="40"   Margin="590,150,3.333,230.667" Click="Button_Click" > 点击一下开启线程</Button>
    </Grid>
</Window>
csharp 复制代码
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading;
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.Navigation;
using System.Windows.Shapes;

namespace TestListView
{
    /// <summary>
    /// MainWindow.xaml 的交互逻辑
    /// </summary>
    public partial class MainWindow : Window
    {

        private static ObservableCollection<UserData> List1 = new ObservableCollection<UserData>();

        public MainWindow()
        {
            InitializeComponent();
            UserList.ItemsSource = List1;
        }

        private void Button_Click(object sender, RoutedEventArgs e)
        {
            Task.Run(() =>
            {
                while (true)
                {
                    UserList.Dispatcher.Invoke(new Action(() => {
                        List1 = UserData.GettestDate();
                        UserList.ItemsSource = List1;
                    }));
           
                    Thread.Sleep(2000);
                }
            });
        }
    }



    class UserData : INotifyPropertyChanged //通知接口
    {
        public event PropertyChangedEventHandler PropertyChanged;
        private string _NameLt;
        private bool _StatueLt;
        public string NameLt
        {
            get { return _NameLt; }
            set
            {
                _NameLt = value;
                PropertyChanged?.Invoke(this, new PropertyChangedEventArgs("NameLt"));
            }
        }
        public bool StatueLt
        {
            get { return _StatueLt; }
            set
            {
                _StatueLt = value;
                PropertyChanged?.Invoke(this, new PropertyChangedEventArgs("StatueLt"));
            }
        }
        public UserData()
        {
            _StatueLt = StatueLt;
            _NameLt = NameLt;
        }



        public static ObservableCollection<UserData> GettestDate()
        {
            ObservableCollection<UserData> oneSources = new ObservableCollection<UserData>();

            for (int i = 0; i < 5; i++)
            {
                var random = new Random();
                oneSources.Add(new UserData() { NameLt = DateTime.Now.ToString(), StatueLt = random.NextDouble() >= 0.5 });

                Thread.Sleep(200);
            }
         return  oneSources;
        }
    }



}
相关推荐
hqwest10 小时前
C#WPF实战出真汁07--【系统设置】--菜品类型设置
开发语言·c#·wpf·grid设计·stackpanel布局
hqwest20 小时前
C#WPF实战出真汁08--【消费开单】--餐桌面板展示
c#·wpf·ui设计·wpf界面设计
orangapple20 小时前
WPF 打印报告图片大小的自适应(含完整示例与详解)
c#·wpf
三千道应用题2 天前
WPF&C#超市管理系统(6)订单详情、顾客注册、商品销售排行查询和库存提示、LiveChat报表
开发语言·c#·wpf
✎ ﹏梦醒͜ღ҉繁华落℘2 天前
开发WPF项目时遇到的问题总结
wpf
hqwest3 天前
C#WPF实战出真汁06--【系统设置】--餐桌类型设置
c#·.net·wpf·布局·分页·命令·viewmodel
Vae_Mars3 天前
WPF中使用InputBindings进行快捷键绑定
wpf
hqwest4 天前
C#WPF实战出真汁05--左侧导航
开发语言·c#·wpf·主界面·窗体设计·视图viewmodel
hqwest4 天前
C#WPF实战出真汁01--项目介绍
开发语言·c#·wpf
wuty0074 天前
WPF 实现支持动态调整高度的文本显示控件
wpf·scrollviewer·extentheight·自动高度控件·动态调整高度