Deriving from UserControl in Silverlight - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T18:40:58Zhttp://stackoverflow.com/feeds/question/400991http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/400991/deriving-from-usercontrol-in-silverlight0Deriving from UserControl in SilverlightGuy2008-12-30T18:03:15Z2009-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#4011372Answer by Michael S. Scherotter for Deriving from UserControl in SilverlightMichael S. Scherotter2008-12-30T19:10:45Z2008-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#4026573Answer by Shawn Wildermuth for Deriving from UserControl in SilverlightShawn Wildermuth2008-12-31T10:09:19Z2008-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><!-- Page.xaml -->
<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">
<Grid x:Name="LayoutRoot" Background="White">
</Grid>
</my:BaseUserControl>
</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#6495980Answer by reverseblade for Deriving from UserControl in Silverlightreverseblade2009-03-16T08:07:06Z2009-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>