码迷,mamicode.com
首页 > Windows程序 > 详细

WPF listView中【checkbox】实现全选功能

时间:2017-07-07 20:05:27      阅读:724      评论:0      收藏:0      [点我收藏+]

标签:new   ring   列表   component   功能   box   for   bug   cli   

  List<xxx> nn = new List<xxx>();
        public MainWindow()
        {
            InitializeComponent();

            for (int i = 0; i < 10; i++)
            {
                nn.Add(new xxx { name = "nihaohao" + i, bol = false });
            }
            listview.ItemsSource = nn;
        }

        // public bool bb { get; set; }
        
        private void Button_Click(object sender, RoutedEventArgs e)
        {
            foreach (xxx item in nn)
            {
                //Debug.WriteLine(item.name + ":" + item.bol);
                item.bol = true; //吧列表中checkbox属性设置为true
            }
        }

//xxx 表类
//实现INotifyPropertyChanged实现更改通知
public class xxx : INotifyPropertyChanged
    {
        private string _name;
        public string name
        {
            get { return _name; }
            set
            {
                _name = value;
                OnPropertyChanged("name");
            }
        }

        private bool _bol;
        public bool bol
        {
            get { return _bol; }
            set
            {
                _bol = value;
                OnPropertyChanged("bol");
            }
        }

        public event PropertyChangedEventHandler PropertyChanged;

        public void OnPropertyChanged(string args)
        {
            PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(args));
            Debug.WriteLine(name);
        }
    }

  

WPF listView中【checkbox】实现全选功能

标签:new   ring   列表   component   功能   box   for   bug   cli   

原文地址:http://www.cnblogs.com/jingxuan-li/p/7133498.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!