fateos
❔ Panel scroll bar only vertical
panel.FlowDirection = FlowDirection.TopDown; I changed this line to:
panel.FlowDirection = FlowDirection.LeftToRight;
and now I get the vertical Scrollbar and the items are added from top to bottom. I am super confused why it works like this??
5 replies
❔ Understanding the model-view-controller
I program event driven (winforms) noone writes unit tests also isnt fun the few times I had to do it. What do you mean with program c# with azure? I know azure has a version control is that what you meant? Hard to keep design patterns in mind if you dont use it in practise enviroment.. Never done anything with different architectures. I looked into delegates and its also very specific knowledge I prob wont need in a long while. SOLID I heard a lot I will look deeper in to that.
Whats with stuff like ASP.NET ? is it the winforms for web?
84 replies
❔ Understanding the model-view-controller
public string FirstName
{
get
{
return _firstName;
}
set
{
_firstName = value;
NotifyOfPropertyChange(() => FirstName); // this notifies the change to whoever binded to FirstName property
NotifyOfPropertyChange(() => FullName); // this notifies the change to whoever binded to FullName property
}
}
84 replies