Hatte die Solution schon verworfen aber sind ja zum Glück nur ein paar Zeilen
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
comboBox1.Items.Add("Herr");
comboBox1.Items.Add("Frau");
comboBox1.Items.Insert(0, "<Keine Auswahl>");
comboBox1.SelectedItem = "<Keine Auswahl>";
}
private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
if ((String)comboBox1.SelectedValue != "<Keine Auswahl>")
comboBox1.Items.Remove("<Keine Auswahl>");
}
}
[/PHP]