public void Add(Group group) { int index = Items.Add(group.Name.Text); this.indexToGroup.Add(index, group); this.groupToIndex.Add(group, index); }
private void cantonComboBox_SelectedIndexChanged(object sender, EventArgs e) { this.group = this.groupComboBox.Value; CheckEnable(); }