Can you use generic forms in C#? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T01:57:10Z http://stackoverflow.com/feeds/question/10905 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/10905/can-you-use-generic-forms-in-c 5 Can you use generic forms in C#? Keith 2008-08-14T11:30:54Z 2008-08-14T11:44:30Z <p>You should be able to create a generic form:</p> <pre><code>public partial class MyGenericForm&lt;T&gt; : Form where T : class { /* form code */ public List&lt;T&gt; 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#10906 0 Answer by Keith for Can you use generic forms in C#? Keith 2008-08-14T11:32:45Z 2008-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&lt;object&gt; { } </code></pre> <p>This means that although the designer is still wrong the expected simple type (i.e without <code>&lt;&gt;</code>) is still found.</p> http://stackoverflow.com/questions/10905/can-you-use-generic-forms-in-c/10907#10907 3 Answer by Matt Hamilton for Can you use generic forms in C#? Matt Hamilton 2008-08-14T11:33:21Z 2008-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#10908 0 Answer by Keith for Can you use generic forms in C#? Keith 2008-08-14T11:35:11Z 2008-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>