似乎无法弄清楚如何做到这一点。我有一个继承的 Control: MyControl 和一个名为 MyOtherFont 的属性。如何让 MyOtherFont 继承父控件的 Font 属性的环境值?
例如,如果我将此控件拖到字体为 Segoe UI 的 Form 上,则从设计器那里,它应该从 Form 继承该值,而不是在属性窗口中将其显示为粗体。
谢谢
最佳答案
弄清楚了。这是一个 C# 示例,它完全符合我的示例所描述的内容。希望这可以帮助某人。
public class MyControl : Control
{
private Font myOtherFont;
public Font MyOtherFont
{
get
{
if (this.myOtherFont == null)
{
if (base.Parent != null)
return base.Parent.Font;
}
return this.myOtherFont;
}
set
{
this.myOtherFont = value;
}
}
private bool ShouldSerializeMyOtherFont()
{
if (base.Parent != null)
if (base.Parent.Font.Equals(this.MyOtherFont))
return false;
if (this.MyOtherFont == null)
return false;
return true;
}
private void ResetMyOtherFont()
{
if (base.Parent != null)
this.MyOtherFont = base.Parent.Font;
else
this.MyOtherFont = Control.DefaultFont;
}
}
关于c# - 创建一个从父属性继承的环境属性,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16428389/