* 总结V2.2.7,增加更新日志
This commit is contained in:
parent
18bd46cf3d
commit
adbba19dd3
BIN
Bin/SunnyUI.dll
BIN
Bin/SunnyUI.dll
Binary file not shown.
BIN
Bin/SunnyUI.pdb
BIN
Bin/SunnyUI.pdb
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,4 +1,26 @@
|
|||||||
using System;
|
/******************************************************************************
|
||||||
|
* SunnyUI 开源控件库、工具类库、扩展类库、多页面开发框架。
|
||||||
|
* CopyRight (C) 2012-2020 ShenYongHua(沈永华).
|
||||||
|
* QQ群:56829229 QQ:17612584 EMail:SunnyUI@qq.com
|
||||||
|
*
|
||||||
|
* Blog: https://www.cnblogs.com/yhuse
|
||||||
|
* Gitee: https://gitee.com/yhuse/SunnyUI
|
||||||
|
* GitHub: https://github.com/yhuse/SunnyUI
|
||||||
|
*
|
||||||
|
* SunnyUI.dll can be used for free under the GPL-3.0 license.
|
||||||
|
* If you use this code, please keep this note.
|
||||||
|
* 如果您使用此代码,请保留此说明。
|
||||||
|
******************************************************************************
|
||||||
|
* 文件名称: UIBarChart.cs
|
||||||
|
* 文件说明: 柱状图
|
||||||
|
* 当前版本: V2.2
|
||||||
|
* 创建日期: 2020-06-06
|
||||||
|
*
|
||||||
|
* 2020-06-06: V2.2.5 增加文件说明
|
||||||
|
* 2020-08-21: V2.2.7 可设置柱状图最小宽度
|
||||||
|
******************************************************************************/
|
||||||
|
|
||||||
|
using System;
|
||||||
using System.Collections.Concurrent;
|
using System.Collections.Concurrent;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel;
|
using System.ComponentModel;
|
||||||
|
@ -1,4 +1,25 @@
|
|||||||
using System;
|
/******************************************************************************
|
||||||
|
* SunnyUI 开源控件库、工具类库、扩展类库、多页面开发框架。
|
||||||
|
* CopyRight (C) 2012-2020 ShenYongHua(沈永华).
|
||||||
|
* QQ群:56829229 QQ:17612584 EMail:SunnyUI@qq.com
|
||||||
|
*
|
||||||
|
* Blog: https://www.cnblogs.com/yhuse
|
||||||
|
* Gitee: https://gitee.com/yhuse/SunnyUI
|
||||||
|
* GitHub: https://github.com/yhuse/SunnyUI
|
||||||
|
*
|
||||||
|
* SunnyUI.dll can be used for free under the GPL-3.0 license.
|
||||||
|
* If you use this code, please keep this note.
|
||||||
|
* 如果您使用此代码,请保留此说明。
|
||||||
|
******************************************************************************
|
||||||
|
* 文件名称: UIBarChartOption.cs
|
||||||
|
* 文件说明: 柱状图配置类
|
||||||
|
* 当前版本: V2.2
|
||||||
|
* 创建日期: 2020-06-06
|
||||||
|
*
|
||||||
|
* 2020-06-06: V2.2.5 增加文件说明
|
||||||
|
******************************************************************************/
|
||||||
|
|
||||||
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Drawing;
|
using System.Drawing;
|
||||||
|
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
* 创建日期: 2020-06-06
|
* 创建日期: 2020-06-06
|
||||||
*
|
*
|
||||||
* 2020-06-06: V2.2.5 增加文件说明
|
* 2020-06-06: V2.2.5 增加文件说明
|
||||||
|
* 2020-09-10: V2.2.7 增加图表的边框线颜色设置
|
||||||
******************************************************************************/
|
******************************************************************************/
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
|
@ -1,4 +1,25 @@
|
|||||||
using System.Drawing;
|
/******************************************************************************
|
||||||
|
* SunnyUI 开源控件库、工具类库、扩展类库、多页面开发框架。
|
||||||
|
* CopyRight (C) 2012-2020 ShenYongHua(沈永华).
|
||||||
|
* QQ群:56829229 QQ:17612584 EMail:SunnyUI@qq.com
|
||||||
|
*
|
||||||
|
* Blog: https://www.cnblogs.com/yhuse
|
||||||
|
* Gitee: https://gitee.com/yhuse/SunnyUI
|
||||||
|
* GitHub: https://github.com/yhuse/SunnyUI
|
||||||
|
*
|
||||||
|
* SunnyUI.dll can be used for free under the GPL-3.0 license.
|
||||||
|
* If you use this code, please keep this note.
|
||||||
|
* 如果您使用此代码,请保留此说明。
|
||||||
|
******************************************************************************
|
||||||
|
* 文件名称: UIChartStyle.cs
|
||||||
|
* 文件说明: 图表主题类
|
||||||
|
* 当前版本: V2.2
|
||||||
|
* 创建日期: 2020-06-06
|
||||||
|
*
|
||||||
|
* 2020-06-06: V2.2.5 增加文件说明
|
||||||
|
******************************************************************************/
|
||||||
|
|
||||||
|
using System.Drawing;
|
||||||
|
|
||||||
namespace Sunny.UI
|
namespace Sunny.UI
|
||||||
{
|
{
|
||||||
|
@ -1,4 +1,25 @@
|
|||||||
using System;
|
/******************************************************************************
|
||||||
|
* SunnyUI 开源控件库、工具类库、扩展类库、多页面开发框架。
|
||||||
|
* CopyRight (C) 2012-2020 ShenYongHua(沈永华).
|
||||||
|
* QQ群:56829229 QQ:17612584 EMail:SunnyUI@qq.com
|
||||||
|
*
|
||||||
|
* Blog: https://www.cnblogs.com/yhuse
|
||||||
|
* Gitee: https://gitee.com/yhuse/SunnyUI
|
||||||
|
* GitHub: https://github.com/yhuse/SunnyUI
|
||||||
|
*
|
||||||
|
* SunnyUI.dll can be used for free under the GPL-3.0 license.
|
||||||
|
* If you use this code, please keep this note.
|
||||||
|
* 如果您使用此代码,请保留此说明。
|
||||||
|
******************************************************************************
|
||||||
|
* 文件名称: UIDoughnutChart.cs
|
||||||
|
* 文件说明: 甜甜圈图
|
||||||
|
* 当前版本: V2.2
|
||||||
|
* 创建日期: 2020-06-06
|
||||||
|
*
|
||||||
|
* 2020-06-06: V2.2.5 增加文件说明
|
||||||
|
******************************************************************************/
|
||||||
|
|
||||||
|
using System;
|
||||||
using System.Collections.Concurrent;
|
using System.Collections.Concurrent;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel;
|
using System.ComponentModel;
|
||||||
|
@ -1,4 +1,25 @@
|
|||||||
using System;
|
/******************************************************************************
|
||||||
|
* SunnyUI 开源控件库、工具类库、扩展类库、多页面开发框架。
|
||||||
|
* CopyRight (C) 2012-2020 ShenYongHua(沈永华).
|
||||||
|
* QQ群:56829229 QQ:17612584 EMail:SunnyUI@qq.com
|
||||||
|
*
|
||||||
|
* Blog: https://www.cnblogs.com/yhuse
|
||||||
|
* Gitee: https://gitee.com/yhuse/SunnyUI
|
||||||
|
* GitHub: https://github.com/yhuse/SunnyUI
|
||||||
|
*
|
||||||
|
* SunnyUI.dll can be used for free under the GPL-3.0 license.
|
||||||
|
* If you use this code, please keep this note.
|
||||||
|
* 如果您使用此代码,请保留此说明。
|
||||||
|
******************************************************************************
|
||||||
|
* 文件名称: UIPieChartOption.cs
|
||||||
|
* 文件说明: 饼状图配置类
|
||||||
|
* 当前版本: V2.2
|
||||||
|
* 创建日期: 2020-06-06
|
||||||
|
*
|
||||||
|
* 2020-06-06: V2.2.5 增加文件说明
|
||||||
|
******************************************************************************/
|
||||||
|
|
||||||
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Drawing;
|
using System.Drawing;
|
||||||
|
|
||||||
|
@ -19,6 +19,8 @@
|
|||||||
* 2020-01-01: V2.2.0 增加文件说明
|
* 2020-01-01: V2.2.0 增加文件说明
|
||||||
* 2020-04-25: V2.2.4 更新主题配置类
|
* 2020-04-25: V2.2.4 更新主题配置类
|
||||||
* 2020-07-26: V2.2.6 增加Selected及选中颜色配置
|
* 2020-07-26: V2.2.6 增加Selected及选中颜色配置
|
||||||
|
* 2020-08-22: V2.2.7 空格键按下press背景效果,添加双击事件,解决因快速点击导致过慢问题
|
||||||
|
* 2020-09-14: V2.2.7 Tips颜色可设置
|
||||||
******************************************************************************/
|
******************************************************************************/
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
|
@ -20,6 +20,8 @@
|
|||||||
* 2020-04-25: V2.2.4 功能增强、美化
|
* 2020-04-25: V2.2.4 功能增强、美化
|
||||||
* 2020-07-15: V2.2.6 更改默认配置为原生
|
* 2020-07-15: V2.2.6 更改默认配置为原生
|
||||||
* 2020-07-18: V2.2.6 重绘水平滚动条
|
* 2020-07-18: V2.2.6 重绘水平滚动条
|
||||||
|
* 2020-08-22: V2.2.7 更新了水平和垂直滚动条的显示,优化滚动效果。
|
||||||
|
* 2020-08-28: V2.2.7 调整水平滚动条
|
||||||
******************************************************************************/
|
******************************************************************************/
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
* 创建日期: 2020-01-01
|
* 创建日期: 2020-01-01
|
||||||
*
|
*
|
||||||
* 2020-01-01: V2.2.0 增加文件说明
|
* 2020-01-01: V2.2.0 增加文件说明
|
||||||
|
* 2020-08-07: V2.2.7 可编辑输入,日期范围控制以防止出错
|
||||||
******************************************************************************/
|
******************************************************************************/
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
|
@ -18,6 +18,8 @@
|
|||||||
*
|
*
|
||||||
* 2020-01-01: V2.2.0 增加文件说明
|
* 2020-01-01: V2.2.0 增加文件说明
|
||||||
* 2020-07-06: V2.2.6 重写下拉窗体,缩短创建时间
|
* 2020-07-06: V2.2.6 重写下拉窗体,缩短创建时间
|
||||||
|
* 2020-08-07: V2.2.7 可编辑输入,日期范围控制以防止出错
|
||||||
|
* 2020-09-16: V2.2.7 更改滚轮选择时间的方向
|
||||||
******************************************************************************/
|
******************************************************************************/
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
|
@ -18,6 +18,7 @@
|
|||||||
*
|
*
|
||||||
* 2020-01-01: V2.2.0 增加文件说明
|
* 2020-01-01: V2.2.0 增加文件说明
|
||||||
* 2020-04-25: V2.2.4 更新主题配置类
|
* 2020-04-25: V2.2.4 更新主题配置类
|
||||||
|
* 2020-08-14: V2.2.7 增加字体调整
|
||||||
******************************************************************************/
|
******************************************************************************/
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
|
@ -18,6 +18,7 @@
|
|||||||
*
|
*
|
||||||
* 2020-01-01: V2.2.0 增加文件说明
|
* 2020-01-01: V2.2.0 增加文件说明
|
||||||
* 2020-04-25: V2.2.4 更新主题配置类
|
* 2020-04-25: V2.2.4 更新主题配置类
|
||||||
|
* 2020-08-14: V2.2.7 增加字体调整
|
||||||
******************************************************************************/
|
******************************************************************************/
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
* 创建日期: 2020-01-01
|
* 创建日期: 2020-01-01
|
||||||
*
|
*
|
||||||
* 2020-01-01: V2.2.0 增加文件说明
|
* 2020-01-01: V2.2.0 增加文件说明
|
||||||
|
* 2020-08-28: V2.2.7 增加节点的Image绘制
|
||||||
******************************************************************************/
|
******************************************************************************/
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
|
@ -18,6 +18,7 @@
|
|||||||
*
|
*
|
||||||
* 2020-01-01: V2.2.0 增加文件说明
|
* 2020-01-01: V2.2.0 增加文件说明
|
||||||
* 2020-06-27: V2.2.5 重绘左右选择按钮
|
* 2020-06-27: V2.2.5 重绘左右选择按钮
|
||||||
|
* 2020-08-12: V2.2.7 标题垂直居中
|
||||||
******************************************************************************/
|
******************************************************************************/
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
|
@ -18,6 +18,7 @@
|
|||||||
*
|
*
|
||||||
* 2020-01-01: V2.2.0 增加文件说明
|
* 2020-01-01: V2.2.0 增加文件说明
|
||||||
* 2020-06-03: V2.2.5 增加多行,增加滚动条
|
* 2020-06-03: V2.2.5 增加多行,增加滚动条
|
||||||
|
* 2020-09-03: V2.2.7 增加FocusedSelectAll属性,激活时全选。
|
||||||
******************************************************************************/
|
******************************************************************************/
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
|
@ -17,6 +17,8 @@
|
|||||||
* 创建日期: 2020-05-29
|
* 创建日期: 2020-05-29
|
||||||
*
|
*
|
||||||
* 2020-05-29: V2.2.5 增加文件
|
* 2020-05-29: V2.2.5 增加文件
|
||||||
|
* 2020-08-07: V2.2.7 可编辑输入
|
||||||
|
* 2020-09-16: V2.2.7 更改滚轮选择时间的方向
|
||||||
******************************************************************************/
|
******************************************************************************/
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
* 创建日期: 2020-01-01
|
* 创建日期: 2020-01-01
|
||||||
*
|
*
|
||||||
* 2020-01-01: V2.2.0 增加文件说明
|
* 2020-01-01: V2.2.0 增加文件说明
|
||||||
|
* 2020-08-14: V2.2.7 增加左右列表项个数变化事件
|
||||||
******************************************************************************/
|
******************************************************************************/
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
|
@ -18,6 +18,7 @@
|
|||||||
*
|
*
|
||||||
* 2020-05-05: V2.2.5 增加文件
|
* 2020-05-05: V2.2.5 增加文件
|
||||||
* 2020-07-07: V2.2.6 全部重写,增加圆角,CheckBoxes等
|
* 2020-07-07: V2.2.6 全部重写,增加圆角,CheckBoxes等
|
||||||
|
* 2020-08-12: V2.2.7 更新可设置背景色
|
||||||
******************************************************************************/
|
******************************************************************************/
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
|
@ -21,6 +21,7 @@
|
|||||||
* 2020-07-01: V2.2.6 仿照QQ,重绘标题栏按钮
|
* 2020-07-01: V2.2.6 仿照QQ,重绘标题栏按钮
|
||||||
* 2020-07-05: V2.2.6 更新窗体控制按钮圆角和跟随窗体圆角变化。
|
* 2020-07-05: V2.2.6 更新窗体控制按钮圆角和跟随窗体圆角变化。
|
||||||
* 2020-09-17: V2.2.7 重写WindowState相关代码
|
* 2020-09-17: V2.2.7 重写WindowState相关代码
|
||||||
|
* 2020-09-17: V2.2.7 增加了窗体可拉拽调整大小ShowDragStretch属性
|
||||||
******************************************************************************/
|
******************************************************************************/
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
|
@ -31,5 +31,5 @@ using System.Runtime.InteropServices;
|
|||||||
// 可以指定所有这些值,也可以使用“内部版本号”和“修订号”的默认值,
|
// 可以指定所有这些值,也可以使用“内部版本号”和“修订号”的默认值,
|
||||||
// 方法是按如下所示使用“*”:
|
// 方法是按如下所示使用“*”:
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
[assembly: AssemblyVersion("2.2.8.0")]
|
[assembly: AssemblyVersion("2.2.7.0")]
|
||||||
[assembly: AssemblyFileVersion("2.2.8.0")]
|
[assembly: AssemblyFileVersion("2.2.7.0")]
|
27
Updates.txt
27
Updates.txt
@ -1,6 +1,29 @@
|
|||||||
+ 增加; - 删除; * 修改
|
+ 增加; - 删除; * 修改
|
||||||
|
|
||||||
2020-07-30 V2.2.6->V2.2.7
|
2020-09-17 V2.2.7
|
||||||
|
+ 新增双主键线程安全字典,分组线程安全字典
|
||||||
|
+ UIHorScrollBarEx,UIVerScrollBarEx:重写了两个滚动条
|
||||||
|
* UIForm:恢复了WindowState,增加了窗体可拉拽调整大小
|
||||||
|
* 增加控件属性显示值及Sunny UI分类
|
||||||
|
* UIDateTimePicker,UITimePicker:更改滚轮选择时间的方向
|
||||||
|
* UIButton:Tips颜色可设置
|
||||||
|
* UIChart:增加图表的边框线颜色设置
|
||||||
|
* UITextBox:增加FocusedSelectAll属性,激活时全选。
|
||||||
|
* UINavBar:增加节点的Image绘制
|
||||||
|
* UIDataGridView:调整水平滚动条
|
||||||
|
* UIButton:添加'是否启用双击事件'属性,解决连续点击效率问题
|
||||||
|
* UIDataGridView:更新了水平和垂直滚动条的显示,优化滚动效果。
|
||||||
|
* UIBbutton:空格键按下press背景效果
|
||||||
|
* UIListBox优化滚轮快速滚动流畅性
|
||||||
|
* UIBarChart:可设置柱状图最小宽度
|
||||||
|
* UIIntegerUpDown, UIDoubleUpDown:增加字体调整
|
||||||
|
* UITabControl:标题垂直居中
|
||||||
|
* UITreeView:更新可设置背景色
|
||||||
|
* UIDatePicker,UITimePicker,UIDateTimePicker:可编辑输入,日期范围控制
|
||||||
|
* UIDatePicker:更改日期范围最小值和最大值
|
||||||
|
* UITitlePanel:更新大小调整后的按钮位置
|
||||||
|
|
||||||
|
2020-07-30 V2.2.6
|
||||||
+ UIPagination:新增分页控件
|
+ UIPagination:新增分页控件
|
||||||
+ UIToolTip:新增控件,可修改字体
|
+ UIToolTip:新增控件,可修改字体
|
||||||
+ UIHorScrollBar:新增水平滚动条
|
+ UIHorScrollBar:新增水平滚动条
|
||||||
@ -19,7 +42,7 @@
|
|||||||
* UILedBulb:边缘平滑
|
* UILedBulb:边缘平滑
|
||||||
* UIForm:仿照QQ,重绘标题栏按钮。
|
* UIForm:仿照QQ,重绘标题栏按钮。
|
||||||
|
|
||||||
2020-06-29 V2.2.5->V2.2.6
|
2020-06-29 V2.2.5
|
||||||
+ UIDoughnutChart:环状图
|
+ UIDoughnutChart:环状图
|
||||||
+ UILoginForm:登录窗体
|
+ UILoginForm:登录窗体
|
||||||
+ UIScrollingText:滚动文字
|
+ UIScrollingText:滚动文字
|
||||||
|
Loading…
x
Reference in New Issue
Block a user