-
Notifications
You must be signed in to change notification settings - Fork 0
/
MainPage.xaml.cs
101 lines (67 loc) · 2.18 KB
/
MainPage.xaml.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
using System.Collections.ObjectModel;
using System.ComponentModel;
namespace ComboCheckBox
{
public partial class MainPage : UserControl, INotifyPropertyChanged
{
public ObservableCollection<CheckItem> List { get; set; }
public MainPage()
{
InitializeComponent();
List = new ObservableCollection<CheckItem>();
for (int i = 0; i < 10; i++)
{
var item = new CheckItem() { Text = "Item" + i.ToString(), IsChecked = false };
item.PropertyChanged += (sd, args) => { NotifyPropertyChanged("List"); };
List.Add(item);
}
this.DataContext = this;
}
public event PropertyChangedEventHandler PropertyChanged;
private void NotifyPropertyChanged(String info)
{
if (PropertyChanged != null)
{
PropertyChanged(this, new PropertyChangedEventArgs(info));
}
}
private void Button_Click(object sender, RoutedEventArgs e)
{
var checkedItems = List.Where(i => i.IsChecked == true);
checkedItems.ToList().ForEach(i => MessageBox.Show(i.Text));
}
}
public class CheckItem : INotifyPropertyChanged
{
public string Text { get; set; }
private bool isChecked;
public bool IsChecked
{
get { return isChecked; }
set
{
isChecked = value;
NotifyPropertyChanged("IsChecked");
}
}
public event PropertyChangedEventHandler PropertyChanged;
private void NotifyPropertyChanged(String info)
{
if (PropertyChanged != null)
{
PropertyChanged(this, new PropertyChangedEventArgs(info));
}
}
}
}