Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I use a usercontrol from a framework that I'm implementing in another project that is basically a non-static class definition in that framework.

Within the calling project (subscriber) I'm placing it as a static instance.

Everything compiles honky dorey. Go to that forms view ( designer regenerates code in backend), then I loose all my static on that control.

There are 4 instances of that control that I need to use. It can only operate as a static instance anyways.

So, I need to find a way how to ENFORCE a static class in frmMain initializer or other means that will work in designer view.

share|improve this question
1  
Did you edit a file that is marked as compiler generated? One with a big fat warning on top that tells you that if you edit it the edited stuff will get overwritten? – CodesInChaos Oct 9 '11 at 10:45
Also I think you're mixing up static classes(those can't be instantiated) and static fields. – CodesInChaos Oct 9 '11 at 10:46
And which GUI framework do you use? WinForms? – CodesInChaos Oct 9 '11 at 10:46
4  
You can't create a static UserControl class. Needing 4 instances of it would be a hint that you're pursuing the wrong idea. – Hans Passant Oct 9 '11 at 12:14

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.