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

Merge pull request !56 from asuper/FixUiUpDownForecolor
This commit is contained in:
Sunny 2022-06-28 09:52:00 +00:00 committed by Gitee
commit 513c8cf171
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
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; }
}
}