Deriving from UserControl in Silverlight - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T18:40:58Z http://stackoverflow.com/feeds/question/400991 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/400991/deriving-from-usercontrol-in-silverlight 0 Deriving from UserControl in Silverlight Guy 2008-12-30T18:03:15Z 2009-03-16T08:07:06Z <p>In Silverlight 2 I have the following class declaration for a control:</p> <pre><code>public partial class ClassX : UserControl </code></pre> <p>I wish to replace UserControl with ClassXBase which derives from UserControl but I'm getting the reasonable error "Partial declarations of 'ClassX' must not specify different base classes"</p> <p>However, I'm unable to find the other partial class to replace its base class. Any idea where this other partial class is or how I do this?</p> http://stackoverflow.com/questions/400991/deriving-from-usercontrol-in-silverlight/401137#401137 2 Answer by Michael S. Scherotter for Deriving from UserControl in Silverlight Michael S. Scherotter 2008-12-30T19:10:45Z 2008-12-30T19:10:45Z <p>The UserControl's partial class is defined by the XAML and the framework expects it to be derived from UserControl. What are you trying to accomplish? You might be better off using encapsulation rather than inheritance. If you must use inheritance, then look to derive from other You might be better off deriving from one the other control classes like ContentControl or Control. Jesse Liberty does a <a href="http://silverlight.net/learn/learnvideo.aspx?video=116200" rel="nofollow">great series of videos</a> on that at <a href="http://silverlight.net" rel="nofollow">Silverlight.net</a>. </p> http://stackoverflow.com/questions/400991/deriving-from-usercontrol-in-silverlight/402657#402657 3 Answer by Shawn Wildermuth for Deriving from UserControl in Silverlight Shawn Wildermuth 2008-12-31T10:09:19Z 2008-12-31T10:09:19Z <p>If you include the namespace of your base class of UserControl, you can do it as long as you use the namespace. For example:</p> <pre><code>public abstract class MyBaseUserControl : UserControl { // ... } </code></pre> <p>Then you have to use this class in the XAML (Note the my namespace and then using the new namespace as the root of the document):</p> <pre><code>&lt;!-- Page.xaml --&gt; &lt;my:BaseUserControl x:Class="SilverlightApplication11.Page" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:my="clr-namespace:SilverlightApplication11" Width="400" Height="300"&gt; &lt;Grid x:Name="LayoutRoot" Background="White"&gt; &lt;/Grid&gt; &lt;/my:BaseUserControl&gt; </code></pre> <p>This won't magically change the base class in the code-behind so change that code to your base class:</p> <pre><code>public partial class Page : BaseUserControl { public Page() { InitializeComponent(); } } </code></pre> http://stackoverflow.com/questions/400991/deriving-from-usercontrol-in-silverlight/649598#649598 0 Answer by reverseblade for Deriving from UserControl in Silverlight reverseblade 2009-03-16T08:07:06Z 2009-03-16T08:07:06Z <p>My Base class contains generic parameters in that case the above solution doesn't work. What can I do ?</p>