Il seguente UserControl WPF chiamato DataTypeWholeNumber che funziona.
Ora voglio creare un UserControl chiamato DataTypeDateTime e DataTypeEmail , ecc.
Molte delle proprietà di dipendenza saranno condivise da tutti questi controlli e quindi desidero inserire i loro metodi comuni in un BaseDataType e fare in modo che ciascuno di questi controlli utente erediti da questo tipo di base.
Tuttavia, quando lo faccio, ottengo l' errore: la dichiarazione parziale potrebbe non avere classi di base diverse .
Quindi come posso implementare l'ereditarietà con UserControls in modo che la funzionalità condivisa sia tutta nella 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());
}
}