I am a new student making a hotel reservation windows application on VStudio using C#. I want to have a label that always shows text that changed depending on what the user has chosen for their reservation. I have everything down except how to make the text always show rather than having to click on the label first. How do I do this?
i am using Windows Form App (.NET Framework). I should have been clearer in my question but what i have is multiple room options using RadioButtons, accomodations using CheckBoxes, and the number of days the person is staying for in a textbox. And in my code i have some math to calculate the price of the reservation. And i have the price always in a variable named "price". Basically what i want is the value of that variable to always show on the label, whatever its value may be, and without having to click on the label or do anything other than select the options for the reservation.