private void LoadServerList()
        {
            _config = controller.ConfigController.GetConfigurationCopy();

            ServerListBox.BeginUpdate();
            ServerListBox.Items.Clear();

            foreach (Server server in _config.servers)
            {
                ServerListBox.Items.Add(server.FriendlyName());
            }

            ServerListBox.EndUpdate();

            if (_selectedIndex >= 0 && _selectedIndex < ServerListBox.Items.Count)
            {
                ServerListBox.SelectedIndex = _selectedIndex;
            }
        }