I have many checkboxes on my form, I decided to create a custom checkbox to use instead.
I thought I could just change the following two lines of code in Mainform.designer.cs...private System.Windows.Forms.CheckBox chkapp;
toprivate CustCheckBox chkapp;
and
this.chkapp = new System.Windows.Forms.CheckBox();
tothis.chkapp = new CustCheckBox();
And I can, in that the code runs as expected with the additions of the custom check box.
But form designer does not like it and will not load, giving just the error "root element missing"
If I ignore it and continue, no controls show in form, they are all gone.
What am I missing that is causing this problem?
Thank you for taking the time to read?