O seguinte UserControl WPF chamado DataTypeWholeNumber que funciona.
Agora eu quero fazer um UserControl chamado DataTypeDateTime e DataTypeEmail , etc.
Muitas das propriedades de dependência serão compartilhadas por todos esses controles e, portanto, quero colocar seus métodos comuns em um BaseDataType e fazer com que cada um desses UserControls herde desse tipo base.
No entanto, quando faço isso, recebo o erro: Declaração parcial não pode ter classes base diferentes .
Então, como posso implementar herança com UserControls para que a funcionalidade compartilhada esteja toda na classe base?
using System.Windows;
using System.Windows.Controls;
namespace TestDependencyProperty827.DataTypes
{
public partial class DataTypeWholeNumber : BaseDataType
{
public DataTypeWholeNumber()
{
InitializeComponent();
DataContext = this;
//defaults
TheWidth = 200;
}
public string TheLabel
{
get
{
return (string)GetValue(TheLabelProperty);
}
set
{
SetValue(TheLabelProperty, value);
}
}
public static readonly DependencyProperty TheLabelProperty =
DependencyProperty.Register("TheLabel", typeof(string), typeof(BaseDataType),
new FrameworkPropertyMetadata());
public string TheContent
{
get
{
return (string)GetValue(TheContentProperty);
}
set
{
SetValue(TheContentProperty, value);
}
}
public static readonly DependencyProperty TheContentProperty =
DependencyProperty.Register("TheContent", typeof(string), typeof(BaseDataType),
new FrameworkPropertyMetadata());
public int TheWidth
{
get
{
return (int)GetValue(TheWidthProperty);
}
set
{
SetValue(TheWidthProperty, value);
}
}
public static readonly DependencyProperty TheWidthProperty =
DependencyProperty.Register("TheWidth", typeof(int), typeof(DataTypeWholeNumber),
new FrameworkPropertyMetadata());
}
}