Proxy TextColor to child
This commit is contained in:
parent
1454faddf5
commit
c65acc3148
1 changed files with 7 additions and 6 deletions
|
|
@ -459,15 +459,16 @@ namespace MatterHackers.MatterControl.CustomWidgets
|
|||
});
|
||||
}
|
||||
|
||||
public Color TextColor { get; }
|
||||
public Color TextColor
|
||||
{
|
||||
get => textWidget.TextColor;
|
||||
set => textWidget.TextColor = value;
|
||||
}
|
||||
|
||||
public override string Text
|
||||
{
|
||||
get => this.textWidget.Text;
|
||||
set
|
||||
{
|
||||
this.textWidget.Text = value;
|
||||
}
|
||||
get => textWidget.Text;
|
||||
set => textWidget.Text = value;
|
||||
}
|
||||
|
||||
public override bool Enabled
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue