So I have two combo boxes, one being dependant on another. I also have a label which I want the price to be displayed in. I would like to assistance on adding a number value to the ComboBox selection, which would then showUp on my Label.
if (CarModelCB.Text == "Gallardo")
{
lblCarPrice.Text = "180000";
}
I'm getting quite a few red lines but this is roughly how I want it to be like.