I am developing a WinForm app in C # and I have some things that always bother me.
Is it better practice to use the label or text box when the data is displayed to the user?
Things like name, phone # etc. My stomach says to use a text box, just set it to read only, until the time comes when I do not need to allow editing from that particular place. Plan for the future, as it was.
As a young developer, I appreciate any information about the young Lone Wolf . Either for any pro and election either? Is there anything that I am thinking?
for the data that a user can edit (whether enabled in current context or not) I always use a text box which enable / disable it as I need it. For the data which is completely informative, that means the user will not be given the option in the current context to change it, then that is where I use a label.
Comments
Post a Comment