Field
根据这篇文章,我使用了一个界面。Field
接口继承自类Style
,Field1、2、3继承自Field
接口。我想Label
用几个不同类型的字段构造一个对象,每个字段都有自己的样式。我不确定我是否以正确的方式这样做,特别是因为我在尝试编译时收到以下错误:Type 'Style' in interface list is not an interface
我的代码:
public interface Field : Style
{
int Xpos { get; set; }
int Ypos { get; set; }
int Zindex { get; set; }
}
解决这个问题的最佳方法是什么?
编辑
我知道从接口继承一个类是不可能的,但这里最好的方法是什么?