I would like to define the following control:
public partial class ObjectSelectorControl<T> : UserControl where T : class
The problem is that the designer can't resolve this. Is there a workaround to this issue?
|
I would like to define the following control:
The problem is that the designer can't resolve this. Is there a workaround to this issue?
| ||||
|
feedback
|
|
This works
had read it here: http://social.msdn.microsoft.com/Forums/en-US/winforms/thread/0c265543-d6f0-41f6-beeb-b89e0071c5c3 | |||||
feedback
|
|
Sounds much like what we do in our project. There's a base class that is generic:
Then for each use we define a non-generic version (which still couldn't be used by designer):
... and then we have derived controls that could be used in designer:
| |||||||||||
feedback
|
|
There are some restrictions on what your control can or cannot do in order to be able to use the designer. Fundamentally they all revolve around the designer being able to instantiate your class (must have a parameterless constructor, can't be Your best hope would be to create your | |||
|
feedback
|
|
Use composition instead of generics. Instead of using ObjectSelectorControl, give a generic member of another type ( | |||
|
feedback
|
|
What happens when you remove
| |||||
feedback
|
|
I don't believe this is possible, because the designer invokes an instance of your class. If you use generics, the designer doesn't know what type to pass into 'T'. | |||
|
feedback
|
|
https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=105876 The bug has been posted to microsoft's site and you can see that its marked as "Postponed" currently there is no solution !! . | |||
feedback
|
|
Same problem, i resolved with a wrap class
On MyUserControlWorking IDE working fine (on MyUserControlWrapper as error). Hope help u. | |||
feedback
|