diff --git a/Bin/SunnyUI.dll b/Bin/SunnyUI.dll index e7e5ef34..5fa538b0 100644 Binary files a/Bin/SunnyUI.dll and b/Bin/SunnyUI.dll differ diff --git a/SunnyUI/Controls/UIDoubleUpDown.cs b/SunnyUI/Controls/UIDoubleUpDown.cs index 1b86ce7a..19f5b26d 100644 --- a/SunnyUI/Controls/UIDoubleUpDown.cs +++ b/SunnyUI/Controls/UIDoubleUpDown.cs @@ -43,7 +43,8 @@ namespace Sunny.UI edit.Visible = false; edit.BorderStyle = BorderStyle.None; edit.TextChanged += Edit_TextChanged; - edit.MouseLeave += Edit_Leave; + edit.Leave += Edit_Leave; + //edit.MouseLeave += Edit_Leave; } private void Edit_Leave(object sender, EventArgs e) diff --git a/SunnyUI/Controls/UIIntegerUpDown.cs b/SunnyUI/Controls/UIIntegerUpDown.cs index 4c84e1a5..4eb0105e 100644 --- a/SunnyUI/Controls/UIIntegerUpDown.cs +++ b/SunnyUI/Controls/UIIntegerUpDown.cs @@ -43,7 +43,8 @@ namespace Sunny.UI edit.Visible = false; edit.BorderStyle = BorderStyle.None; edit.TextChanged += Edit_TextChanged; - edit.MouseLeave += Edit_Leave; + edit.Leave += Edit_Leave; + //edit.MouseLeave += Edit_Leave; } private void Edit_Leave(object sender, EventArgs e) diff --git a/Updates.txt b/Updates.txt index 37397069..02c6f8b9 100644 --- a/Updates.txt +++ b/Updates.txt @@ -1,5 +1,18 @@ + 增加; - 删除; * 修改 +2020-12-20 V2.2.9 ++ UIWaitForm:等待窗体 ++ UIComboTreeView:新增下拉框TreeView ++ UIMessageForm:消息提示框增加黑色半透明遮罩层 ++ Win32API:新增Win32API函数 ++ UJsonConfig:不引用第三方控件,用.Net自带的序列化实现Json,增加Json文件配置类 ++ UIDataGridViewForm:增加了一个表格模板基类 +* UIDataGridView:修改DataSource赋值后Column改变引起的水平滚动条错误 +* UIDoubleUpDown,UIIntegerUpDown:增加双击可编辑数值 +* UINavMenu:增加选中后图标的背景色或应用选中图片索引 +* 页面框架增加页面内跳转方法 +* 日期、时间选择框增加CanEmpty,输入可为空 + 2020-10-12 V2.2.8 + UILineChart:完成曲线图表 + UIScale:增加坐标轴刻度计算类