Aşağıdaki WPF UserControl , çalışan DataTypeWholeNumber olarak adlandırılır .
Şimdi DataTypeDateTime ve DataTypeEmail , vb. Adında bir UserControl yapmak istiyorum .
Bağımlılık Özelliklerinin çoğu, tüm bu denetimler tarafından paylaşılacak ve bu nedenle , ortak yöntemlerini bir BaseDataType içine koymak ve bu UserControls'lerin her birinin bu temel türden miras almasını istiyorum .
Ancak, bunu yaptığımda şu hatayı alıyorum: Kısmi Bildirimin farklı temel sınıfları olmayabilir .
Öyleyse, UserControls ile kalıtımı nasıl uygulayabilirim, böylece paylaşılan işlevlerin tümü temel sınıfta olur?
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());
}
}