修复了UIDoubleUpDown和UIIntegerUpDown不能设置字体颜色的bug

This commit is contained in:
chenren 2022-06-28 17:18:28 +08:00
parent 2d8daa6d2b
commit 2b5953f2c3
2 changed files with 3 additions and 0 deletions

View File

@ -382,5 +382,7 @@ namespace Sunny.UI
btnAdd.Width = btnDec.Width = buttonWidth;
}
}
public override Color ForeColor { get => pnlValue.ForeColor; set => pnlValue.ForeColor = value; }
}
}

View File

@ -359,5 +359,6 @@ namespace Sunny.UI
btnAdd.Width = btnDec.Width = buttonWidth;
}
}
public override Color ForeColor { get => pnlValue.ForeColor; set => pnlValue.ForeColor = value; }
}
}