* UIDropControl: 下拉框控件增加Tips小红点

* UITextBox: 增加Tips小红点
This commit is contained in:
Sunny 2023-02-07 21:28:09 +08:00
parent 30b5c92b93
commit 7242a192c1
3 changed files with 7 additions and 0 deletions

View File

@ -15,6 +15,7 @@
{
if (disposing && (components != null))
{
CloseTips();
components.Dispose();
}

View File

@ -15,6 +15,7 @@
{
if (disposing && (components != null))
{
CloseTips();
components.Dispose();
}
base.Dispose(disposing);

View File

@ -646,6 +646,11 @@ namespace Sunny.UI
{
base.OnSizeChanged(e);
SizeChange();
if (tipsBtn != null)
{
tipsBtn.Location = new System.Drawing.Point(Width - 11, 2);
}
}
protected override void OnPaddingChanged(EventArgs e)