I am new to .net programming in visual components, and wants to learn. Hence I want to create a panel for weld parameters with a label that changes the text. I have created a button which works and I have a created labels, but i cannot change the text inside the label via the code from the button.
I have done the turtorial for the Hello world panel, which creates a box in the layout.
You could check if there is relevant content in the Academy for .NET programming. There should at least be one course that is helpful, and some additional lessons.
I have been through the tutorials for .net, but i cannot find a way to change the text of a label inside the panel. I want to do something along what is done 11 minutes inside this video:
An easy way is to use Caliburn.Micro library and have the text box, button and label in your view use the same name as the properties and methods in your view model to make the binding easy. Here is a quick and dirty example, and notice that I notified property update (pick and choose how you want to do that).