private void AlbumComboBox_ValueChanged(object sender, Syncfusion.XForms.ComboBox.ValueChangedEventArgs e)
        {
            SfComboBox cmb = sender as SfComboBox;

            if (cmb.SelectedItem == null)
            {
                VM.NoResultsFoundText     = "No results found, click here to add album " + e.Value;
                SongComboBox.SelectedItem = null;
                SongComboBox.Text         = "";
                VM.SongList.Clear();
            }
            VM.AlbumName = e.Value;
        }
 private void SongComboBox_ValueChanged(object sender, Syncfusion.XForms.ComboBox.ValueChangedEventArgs e)
 {
     VM.NoResultsFoundText = "No results found, click here to add song " + e.Value;
     VM.SongName           = e.Value;
 }