I have 2 comboboxes that has selectionchanged event and it is firing multiple times like 7 times and it is kinda of getting performance issues. Why does this happen and how do I Improve my code. Also, the selected index won't change to zero even if I set it programmatically. thanks.
<StackPanel Orientation="Horizontal" HorizontalAlignment="Stretch">
<ComboBox Name="cboQualification" Width="100" Margin="2"
Text="{Binding Path=QualificationType, Mode=TwoWay}" SelectionChanged="cboQualification_SelectionChanged" />
<TextBlock Text=" Types " />
<ComboBox Name="cboType" Width="200" Margin="2,0,2,2" Text="{Binding Path=QualificationSubType, Mode=TwoWay}" SelectionChanged="cboType_SelectionChanged" />
</StackPanel>
private void FillComboBox()
{
cboQualification.Items.Add("Mediation");
cboQualification.Items.Add("Case Evaluation");
cboQualification.Items.Insert(0, "All");
cboQualification.SelectedIndex = cboQualification.Items.Count > 0 ? 0 : -1;//this wont take effect coz when I debug it in selectionchanged event it won't go to zero index.
}
private void cboQualification_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
if (cboQualification.SelectedIndex == -1)
cboQualification.SelectedIndex = 0;
QualificationType = cboQualification.SelectedItem.ToString();
_subtypeList.Clear();
switch (QualificationType)
{
case "Mediation":
CreateMediationList();
break;
case "Case Evaluation":
CreateCaseEvalList();
break;
case "All":
CreateMediationList();
CreateCaseEvalList();
break;
}
NeutralQualificationSubType all = new NeutralQualificationSubType();
all.Type = "All";
all.Desc = "All";
_subtypeList.Insert(0, all);
cboType.ItemsSource = _subtypeList;
cboType.DisplayMemberPath = "Desc";
cboType.SelectedIndex = cboType.Items.Count > 0 ? 0 : -1;
GetAllNeutrals();
}
private void cboType_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
if (cboType.SelectedIndex == -1)
cboType.SelectedIndex = 0;
if (cboType.SelectedItem != null)
QualificationSubType = ((NeutralQualificationSubType)cboType.SelectedItem).Type;
GetAllNeutrals();
}
private void GetAllNeutrals()
{
if (_neutralFMList != null)
_neutralFMList.Clear();
var listOFallNeutrals = FileMaintenanceBusiness.Instance.GetAllNeutralFileMaints();
if (listOFallNeutrals != null)
{
if (cboQualification.SelectedItem != null && cboType.SelectedItem != null || cboQualification.SelectedItem == null && cboType.SelectedItem != null)
{
if (QualificationSubType == "All")
{
if (QualificationType == "Mediation")
{
_neutralFMList = listOFallNeutrals.Where((i) => i.MediationCivil.Equals(true) || i.MediationDomestic.Equals(true) || i.MediationDomesticViolence.Equals(true) || i.MediationMagistrate.Equals(true)).ToList();
foreach (var item in _neutralFMList)
item.Qualification = QualificationType;
}
else if (QualificationType == "Case Evaluation Type")
{
_neutralFMList = listOFallNeutrals.Where((i) => i.CaseEvalCondemnation.Equals(true) || i.CaseEvalContracts.Equals(true) || i.CaseEvalDomestic.Equals(true) || i.CaseEvalDomesticViolence.Equals(true) || i.CaseEvalEquity.Equals(true) || i.CaseEvalTaxAppeal.Equals(true) || i.CaseEvalTorts.Equals(true) || i.CaseEvalZoning.Equals(true)).ToList();
foreach (var item in _neutralFMList)
item.Qualification = QualificationType;
}
else
{
var items = listOFallNeutrals.Where((i) => i.CaseEvalCondemnation.Equals(true) || i.CaseEvalContracts.Equals(true) || i.CaseEvalDomestic.Equals(true) || i.CaseEvalDomesticViolence.Equals(true) || i.CaseEvalEquity.Equals(true) || i.CaseEvalTaxAppeal.Equals(true) || i.CaseEvalTorts.Equals(true) || i.CaseEvalZoning.Equals(true)
&& i.MediationCivil.Equals(true) || i.MediationDomestic.Equals(true) || i.MediationDomesticViolence.Equals(true) || i.MediationMagistrate.Equals(true)).ToList();
foreach (var item in items)
{
item.Qualification = "Case Eval / Mediation";
_neutralFMList.Add(item);
}
}
}
else
{
var items = FileMaintenanceBusiness.Instance.GetManyNeutralFileMaintInfobyKeyword(true, QualificationSubType);
if (items != null)
_neutralFMList = items.ToList();
foreach (var item in _neutralFMList)
item.Qualification = QualificationType;
}
}
else if (cboQualification.SelectedItem != null && cboType.SelectedItem == null)
{
if (QualificationType == "Mediation")
{
_neutralFMList = listOFallNeutrals.Where((i) => i.MediationCivil.Equals(true) || i.MediationDomestic.Equals(true) || i.MediationDomesticViolence.Equals(true) || i.MediationMagistrate.Equals(true)).ToList();
foreach (var item in _neutralFMList)
item.Qualification = QualificationType;
}
else if (QualificationType == "Case Evaluation Type")
{
_neutralFMList = listOFallNeutrals.Where((i) => i.CaseEvalCondemnation.Equals(true) || i.CaseEvalContracts.Equals(true) || i.CaseEvalDomestic.Equals(true) || i.CaseEvalDomesticViolence.Equals(true) || i.CaseEvalEquity.Equals(true) || i.CaseEvalTaxAppeal.Equals(true) || i.CaseEvalTorts.Equals(true) || i.CaseEvalZoning.Equals(true)).ToList();
foreach (var item in _neutralFMList)
item.Qualification = QualificationType;
}
else
{
var items = listOFallNeutrals.Where((i) => i.CaseEvalCondemnation.Equals(true) || i.CaseEvalContracts.Equals(true) || i.CaseEvalDomestic.Equals(true) || i.CaseEvalDomesticViolence.Equals(true) || i.CaseEvalEquity.Equals(true) || i.CaseEvalTaxAppeal.Equals(true) || i.CaseEvalTorts.Equals(true) || i.CaseEvalZoning.Equals(true)
&& i.MediationCivil.Equals(true) || i.MediationDomestic.Equals(true) || i.MediationDomesticViolence.Equals(true) || i.MediationMagistrate.Equals(true)).ToList();
foreach (var item in items)
{
item.Qualification = "Case Eval / Mediation";
_neutralFMList.Add(item);
}
//_neutralFMList = listOFallNeutrals.Where((i) => i.CaseEvalCondemnation.Equals(true) || i.CaseEvalContracts.Equals(true) || i.CaseEvalDomestic.Equals(true) || i.CaseEvalDomesticViolence.Equals(true) || i.CaseEvalEquity.Equals(true) || i.CaseEvalTaxAppeal.Equals(true) || i.CaseEvalTorts.Equals(true) || i.CaseEvalZoning.Equals(true)
// || i.MediationCivil.Equals(true) || i.MediationDomestic.Equals(true) || i.MediationDomesticViolence.Equals(true) || i.MediationMagistrate.Equals(true)).ToList();
}
}
else
{
_neutralFMList = listOFallNeutrals.ToList();
_neutralFMList = listOFallNeutrals.Where((i) => i.CaseEvalCondemnation.Equals(true) || i.CaseEvalContracts.Equals(true) || i.CaseEvalDomestic.Equals(true) || i.CaseEvalDomesticViolence.Equals(true) || i.CaseEvalEquity.Equals(true) || i.CaseEvalTaxAppeal.Equals(true) || i.CaseEvalTorts.Equals(true) || i.CaseEvalZoning.Equals(true)).ToList();
foreach (var item in _neutralFMList)
item.Qualification = "Case Eval";
var list = listOFallNeutrals.Where((i) => i.MediationCivil.Equals(true) || i.MediationDomestic.Equals(true) || i.MediationDomesticViolence.Equals(true) || i.MediationMagistrate.Equals(true)).ToList();
foreach (var item in list)
{
item.Qualification = "Mediation";
_neutralFMList.Add(item);
}
}
if (rbActive.IsChecked.HasValue && rbActive.IsChecked.Value == true)
{
var items = from n in _neutralFMList where !string.IsNullOrEmpty(n.Status) ? n.Status.ToUpper() == "FULL" || n.Status == "PROV" || n.Status == "WATCH" : false select n;
//_neutralFMList = items != null && items.Count() > 0 ? items.ToList() : null;
if (items != null && items.Count() > 0)
_neutralFMList = items.ToList();
else _neutralFMList.Clear();
}
else if (rbInActive.IsChecked.HasValue && rbInActive.IsChecked.Value == true)
{
var items = from n in _neutralFMList where !string.IsNullOrEmpty(n.Status) ? n.Status.ToUpper() == "INACTIVE" : false select n;
if (items != null && items.Count() > 0)
_neutralFMList = items.ToList();
else _neutralFMList.Clear();
// _neutralFMList = items != null && items.Count() > 0 ? items.ToList() : ;
}
}
FillNeutralIDComboBox();
}
private void FillNeutralIDComboBox()
{
ObservableCollection<tblNeutralFileMaint> neutralIdCollection = null;
if (_neutralFMList != null && _neutralFMList.Count > 1)
{
all = new tblNeutralFileMaint();
all.FirstName = "All";
all.NeutralID = "All";
_neutralFMList.Insert(0, all);
}
else
txtNeutral.Text = string.Empty;
neutralIdCollection = new ObservableCollection<tblNeutralFileMaint>(_neutralFMList);
cboNeutralId.ItemsSource = neutralIdCollection;
cboNeutralId.DisplayMemberPath = "NeutralID";
if (_selectedNeutral != null)
{
cboNeutralId.SelectedIndex = -1;
if (_neutralFMList != null && _neutralFMList.Count == 1)
cboNeutralId.SelectedItem = _neutralFMList[0];
if (_neutralFMList != null && _neutralFMList.Count > 1)
if (all != null && _neutralFMList.Contains(all))
cboNeutralId.SelectedItem = all;
}
else
cboNeutralId.SelectedIndex = 0;
}