Ive been searching for an answer to this question for a while now but haven't seem to come across anything clear.
Suppose I have a custom data class MyClass
that i want to use for back-end storage and computation of data that will be displayed in a form MyForm
. What is the best way of instantiating MyClass
so that the data inside of it will be accessible to MyForm
during runtime? Is this even possible to do with a Windows Form, or is there an easier way of displaying information stored in a custom made C++ class with a GUI?