public FormChooseCharacter(CharacterProfilerData characterList) { InitializeComponent(); m_characterList = characterList; foreach (CharacterProfilerRealm realm in m_characterList.Realms) { comboBoxRealm.Items.Add(realm.Name); } comboBoxRealm.SelectedIndex = 0; updateCharacterList(); }
public FormChooseCharacter(CharacterProfilerData characterList) { InitializeComponent(); m_characterList = characterList; foreach (CharacterProfilerFailedImport error in m_characterList.Errors) { object[] asRowData = { error.Realm, error.Character, error.Error }; dataGridFailedImport.Rows.Add(asRowData); } foreach (CharacterProfilerRealm realm in m_characterList.Realms) { comboBoxRealm.Items.Add(realm.Name); } comboBoxRealm.SelectedIndex = 0; updateCharacterList(); }