❔ combobox in winforms
Hi, i am trying to make a small program in winforms that changes the back color of the form into the color that you have selected from a combobox. But i have no idea how to write that. i mean how to write "when you selected PINK (in the combobox)------> change form background to pink". can someone help?
2 Replies
Handle an
SelectedIndexChanged
event of ComboBox
and change BackColor
of Form
depending on SelectedIndex
property of ComboBox
Was this issue resolved? If so, run
/close
- otherwise I will mark this as stale and this post will be archived until there is new activity.