I must still be doing something wrong. Here is what I am doing exactly.
I have a user Control with the the following XAML:
<UserControl x:Class="Class1.Control1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:Controls="clr-namespace:class1"
Height="200" Width="175">
<Grid>
</Grid>
and the folling .cs code
public partial class Control1 : UserControl{...}
I want to ineherit from control1 in another project and add more functionality.
I tried using a class like so:
public class Class2 : Class1.Control1
This didnt work though because there was no XAML
I was unable to use a User Control because I could not inherit from anyclass except UserControl
Do I need to use a CustomControl? Does anyone see what I am doing wrong?