Can you use generic forms in C#? - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T01:57:10Zhttp://stackoverflow.com/feeds/question/10905http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/10905/can-you-use-generic-forms-in-c5Can you use generic forms in C#?Keith2008-08-14T11:30:54Z2008-08-14T11:44:30Z
<p>You should be able to create a generic form:</p>
<pre><code>public partial class MyGenericForm<T> :
Form where T : class
{
/* form code */
public List<T> TypedList { get; set; }
}
</code></pre>
<p>Is valid C#, and compiles. However the designer won't work and the form will throw a runtime exception if you have any images stating that it cannot find the resource.</p>
<p>I think this is because the windows forms designer assumes that the resources will be stored under the simple type's name.</p>
http://stackoverflow.com/questions/10905/can-you-use-generic-forms-in-c/10906#109060Answer by Keith for Can you use generic forms in C#?Keith2008-08-14T11:32:45Z2008-08-14T11:32:45Z<p>I have a hack to workaround this, which works but isn't ideal:</p>
<p>Add a new class to the project that inherits the form with its simple name.</p>
<pre><code>internal class MyGenericForm:
MyGenericForm<object> { }
</code></pre>
<p>This means that although the designer is still wrong the expected simple type (i.e without <code><></code>) is still found.</p>
http://stackoverflow.com/questions/10905/can-you-use-generic-forms-in-c/10907#109073Answer by Matt Hamilton for Can you use generic forms in C#?Matt Hamilton2008-08-14T11:33:21Z2008-08-14T11:33:21Z<p>Yes you can! Here's a blog post I made a while ago with the trick:</p>
<p><a href="http://www.madprops.org/blog/designing-generic-forms/" rel="nofollow" title="Bristol University Language Engineering Course">Designing Generic Forms</a></p>
<p>Edit: Looks like you're already doing it this way. This method works fine so I wouldn't consider it too hacky.</p>
http://stackoverflow.com/questions/10905/can-you-use-generic-forms-in-c/10908#109080Answer by Keith for Can you use generic forms in C#?Keith2008-08-14T11:35:11Z2008-08-14T11:35:11Z<p>Thanks @Matt Hamilton - your post is more detailed than mine :-)</p>
<p>It's basically the same workaround though, is there a way to do this without the hack?</p>