* 更新各个文档的修改日志至20210817
This commit is contained in:
parent
a48ede1da3
commit
9b38d5a32a
3
.gitignore
vendored
3
.gitignore
vendored
@ -336,4 +336,5 @@ ASALocalRun/
|
||||
.localhistory/
|
||||
|
||||
# BeatPulse healthcheck temp database
|
||||
healthchecksdb
|
||||
healthchecksdb
|
||||
/SunnyUI.Net5.Demo/bin/net5.0-windows
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
2
SunnyUI.Demo/Industrial/FPipe.designer.cs
generated
2
SunnyUI.Demo/Industrial/FPipe.designer.cs
generated
@ -566,7 +566,7 @@ namespace Sunny.UI.Demo
|
||||
//
|
||||
this.AllowShowTitle = true;
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
|
||||
this.ClientSize = new System.Drawing.Size(855, 642);
|
||||
this.Controls.Add(this.uiValve4);
|
||||
this.Controls.Add(this.uiValve2);
|
||||
|
@ -34,6 +34,9 @@
|
||||
<PropertyGroup>
|
||||
<ApplicationIcon>SunnyUI.ico</ApplicationIcon>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<ApplicationManifest>app.manifest</ApplicationManifest>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="SunnyUI, Version=3.0.6.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
@ -521,6 +524,7 @@
|
||||
<None Include="..\.editorconfig">
|
||||
<Link>.editorconfig</Link>
|
||||
</None>
|
||||
<None Include="app.manifest" />
|
||||
<None Include="packages.config" />
|
||||
<None Include="Properties\Settings.settings">
|
||||
<Generator>SettingsSingleFileGenerator</Generator>
|
||||
|
77
SunnyUI.Demo/app.manifest
Normal file
77
SunnyUI.Demo/app.manifest
Normal file
@ -0,0 +1,77 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<assemblyIdentity version="1.0.0.0" name="MyApplication.app"/>
|
||||
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
|
||||
<security>
|
||||
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
|
||||
<!-- UAC 清单选项
|
||||
如果想要更改 Windows 用户帐户控制级别,请使用
|
||||
以下节点之一替换 requestedExecutionLevel 节点。n
|
||||
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
|
||||
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
|
||||
<requestedExecutionLevel level="highestAvailable" uiAccess="false" />
|
||||
|
||||
指定 requestedExecutionLevel 元素将禁用文件和注册表虚拟化。
|
||||
如果你的应用程序需要此虚拟化来实现向后兼容性,则删除此
|
||||
元素。
|
||||
-->
|
||||
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
|
||||
</requestedPrivileges>
|
||||
</security>
|
||||
</trustInfo>
|
||||
|
||||
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
|
||||
<application>
|
||||
<!-- 设计此应用程序与其一起工作且已针对此应用程序进行测试的
|
||||
Windows 版本的列表。取消评论适当的元素,
|
||||
Windows 将自动选择最兼容的环境。 -->
|
||||
|
||||
<!-- Windows Vista -->
|
||||
<!--<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}" />-->
|
||||
|
||||
<!-- Windows 7 -->
|
||||
<!--<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}" />-->
|
||||
|
||||
<!-- Windows 8 -->
|
||||
<!--<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}" />-->
|
||||
|
||||
<!-- Windows 8.1 -->
|
||||
<!--<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}" />-->
|
||||
|
||||
<!-- Windows 10 -->
|
||||
<!--<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}" />-->
|
||||
|
||||
</application>
|
||||
</compatibility>
|
||||
|
||||
<!-- 指示该应用程序可感知 DPI 且 Windows 在 DPI 较高时将不会对其进行
|
||||
自动缩放。Windows Presentation Foundation (WPF)应用程序自动感知 DPI,无需
|
||||
选择加入。选择加入此设置的 Windows 窗体应用程序(面向 .NET Framework 4.6)还应
|
||||
在其 app.config 中将 "EnableWindowsFormsHighDpiAutoResizing" 设置设置为 "true"。
|
||||
|
||||
将应用程序设为感知长路径。请参阅 https://docs.microsoft.com/windows/win32/fileio/maximum-file-path-limitation -->
|
||||
|
||||
<application xmlns="urn:schemas-microsoft-com:asm.v3">
|
||||
<windowsSettings>
|
||||
<dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true</dpiAware>
|
||||
<longPathAware xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">true</longPathAware>
|
||||
</windowsSettings>
|
||||
</application>
|
||||
|
||||
<!-- 启用 Windows 公共控件和对话框的主题(Windows XP 和更高版本) -->
|
||||
<!--
|
||||
<dependency>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity
|
||||
type="win32"
|
||||
name="Microsoft.Windows.Common-Controls"
|
||||
version="6.0.0.0"
|
||||
processorArchitecture="*"
|
||||
publicKeyToken="6595b64144ccf1df"
|
||||
language="*"
|
||||
/>
|
||||
</dependentAssembly>
|
||||
</dependency>
|
||||
-->
|
||||
|
||||
</assembly>
|
@ -13,6 +13,7 @@
|
||||
<Company>SunnyUI.Net</Company>
|
||||
<Copyright>Copyright ©SunnyUI.Net 2012-2021</Copyright>
|
||||
<PackageProjectUrl>https://gitee.com/yhuse/SunnyUI</PackageProjectUrl>
|
||||
<ApplicationManifest>app.manifest</ApplicationManifest>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
||||
|
77
SunnyUI.Net5.Demo/app.manifest
Normal file
77
SunnyUI.Net5.Demo/app.manifest
Normal file
@ -0,0 +1,77 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<assemblyIdentity version="1.0.0.0" name="MyApplication.app"/>
|
||||
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
|
||||
<security>
|
||||
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
|
||||
<!-- UAC 清单选项
|
||||
如果想要更改 Windows 用户帐户控制级别,请使用
|
||||
以下节点之一替换 requestedExecutionLevel 节点。n
|
||||
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
|
||||
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
|
||||
<requestedExecutionLevel level="highestAvailable" uiAccess="false" />
|
||||
|
||||
指定 requestedExecutionLevel 元素将禁用文件和注册表虚拟化。
|
||||
如果你的应用程序需要此虚拟化来实现向后兼容性,则删除此
|
||||
元素。
|
||||
-->
|
||||
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
|
||||
</requestedPrivileges>
|
||||
</security>
|
||||
</trustInfo>
|
||||
|
||||
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
|
||||
<application>
|
||||
<!-- 设计此应用程序与其一起工作且已针对此应用程序进行测试的
|
||||
Windows 版本的列表。取消评论适当的元素,
|
||||
Windows 将自动选择最兼容的环境。 -->
|
||||
|
||||
<!-- Windows Vista -->
|
||||
<!--<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}" />-->
|
||||
|
||||
<!-- Windows 7 -->
|
||||
<!--<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}" />-->
|
||||
|
||||
<!-- Windows 8 -->
|
||||
<!--<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}" />-->
|
||||
|
||||
<!-- Windows 8.1 -->
|
||||
<!--<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}" />-->
|
||||
|
||||
<!-- Windows 10 -->
|
||||
<!--<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}" />-->
|
||||
|
||||
</application>
|
||||
</compatibility>
|
||||
|
||||
<!-- 指示该应用程序可感知 DPI 且 Windows 在 DPI 较高时将不会对其进行
|
||||
自动缩放。Windows Presentation Foundation (WPF)应用程序自动感知 DPI,无需
|
||||
选择加入。选择加入此设置的 Windows 窗体应用程序(面向 .NET Framework 4.6)还应
|
||||
在其 app.config 中将 "EnableWindowsFormsHighDpiAutoResizing" 设置设置为 "true"。
|
||||
|
||||
将应用程序设为感知长路径。请参阅 https://docs.microsoft.com/windows/win32/fileio/maximum-file-path-limitation -->
|
||||
|
||||
<application xmlns="urn:schemas-microsoft-com:asm.v3">
|
||||
<windowsSettings>
|
||||
<dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true</dpiAware>
|
||||
<longPathAware xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">true</longPathAware>
|
||||
</windowsSettings>
|
||||
</application>
|
||||
|
||||
<!-- 启用 Windows 公共控件和对话框的主题(Windows XP 和更高版本) -->
|
||||
<!--
|
||||
<dependency>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity
|
||||
type="win32"
|
||||
name="Microsoft.Windows.Common-Controls"
|
||||
version="6.0.0.0"
|
||||
processorArchitecture="*"
|
||||
publicKeyToken="6595b64144ccf1df"
|
||||
language="*"
|
||||
/>
|
||||
</dependentAssembly>
|
||||
</dependency>
|
||||
-->
|
||||
|
||||
</assembly>
|
@ -18,6 +18,7 @@
|
||||
*
|
||||
* 2020-06-06: V2.2.5 增加文件说明
|
||||
* 2020-08-21: V2.2.7 可设置柱状图最小宽度
|
||||
* 2021-07-22: V3.0.5 增加更新数据的方法
|
||||
******************************************************************************/
|
||||
|
||||
using System;
|
||||
|
@ -17,6 +17,7 @@
|
||||
* 创建日期: 2020-06-06
|
||||
*
|
||||
* 2020-06-06: V2.2.5 增加文件说明
|
||||
* 2021-07-22: V3.0.5 增加更新数据的方法
|
||||
******************************************************************************/
|
||||
|
||||
using System;
|
||||
|
@ -18,6 +18,9 @@
|
||||
*
|
||||
* 2020-10-01: V2.2.8 完成曲线图表
|
||||
* 2021-04-06: V3.0.2 增加鼠标框选放大,可多次放大,右键点击恢复一次,双击恢复默认
|
||||
* 2021-04-15: V3.0.3 有右键菜单时,取消恢复上次缩放,可在右键菜单增加节点,调用ZoomBack()方法
|
||||
* 2021-06-18: V3.0.4 显示鼠标点格式更新
|
||||
* 2021-07-22: V3.0.5 可自定义背景色,增加实时数据的Demo
|
||||
******************************************************************************/
|
||||
|
||||
using System;
|
||||
|
@ -17,6 +17,7 @@
|
||||
* 创建日期: 2020-06-06
|
||||
*
|
||||
* 2020-06-06: V2.2.5 增加文件说明
|
||||
* 2021-07-22: V3.0.5 增加更新数据的方法
|
||||
******************************************************************************/
|
||||
|
||||
using System;
|
||||
|
@ -1,4 +1,25 @@
|
||||
using System;
|
||||
/******************************************************************************
|
||||
* SunnyUI 开源控件库、工具类库、扩展类库、多页面开发框架。
|
||||
* CopyRight (C) 2012-2021 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.
|
||||
* 如果您使用此代码,请保留此说明。
|
||||
******************************************************************************
|
||||
* 文件名称: UIToolStripDropDown.cs
|
||||
* 文件说明: 弹窗管理类
|
||||
* 当前版本: V3.0
|
||||
* 创建日期: 2021-07-10
|
||||
*
|
||||
* 2021-07-10: V3.0.4 增加文件说明
|
||||
******************************************************************************/
|
||||
|
||||
using System;
|
||||
using System.ComponentModel;
|
||||
using System.Drawing;
|
||||
using System.Windows.Forms;
|
||||
|
@ -17,6 +17,7 @@
|
||||
* 创建日期: 2020-06-04
|
||||
*
|
||||
* 2020-06-04: V2.2.5 增加文件
|
||||
* 2021-06-18: V3.0.4 修改可自定义背景色
|
||||
******************************************************************************/
|
||||
|
||||
using System;
|
||||
|
@ -21,6 +21,7 @@
|
||||
* 2020-07-26: V2.2.6 增加Selected及选中颜色配置
|
||||
* 2020-08-22: V2.2.7 空格键按下press背景效果,添加双击事件,解决因快速点击导致过慢问题
|
||||
* 2020-09-14: V2.2.7 Tips颜色可设置
|
||||
* 2021-07-18: V3.0.5 增加ShowFocusColor,用来显示Focus状态
|
||||
******************************************************************************/
|
||||
|
||||
using System;
|
||||
|
@ -19,6 +19,7 @@
|
||||
* 2020-01-01: V2.2.0 增加文件说明
|
||||
* 2020-04-16: V2.2.1 增加ReadOnly属性
|
||||
* 2020-04-25: V2.2.4 更新主题配置类
|
||||
* 2021-04-26: V3.0.3 增加默认事件CheckedChanged
|
||||
******************************************************************************/
|
||||
|
||||
using System;
|
||||
|
@ -18,6 +18,10 @@
|
||||
*
|
||||
* 2020-01-01: V2.2.0 增加文件说明
|
||||
* 2020-06-11: V2.2.5 增加DataSource,支持数据绑定
|
||||
* 2021-05-06: V3.0.3 解决鼠标下拉选择,触发SelectedIndexChanged两次的问题
|
||||
* 2021-06-03: V3.0.4 更新了数据绑定相关代码
|
||||
* 2021-08-03: V3.0.5 Items.Clear后清除显示
|
||||
* 2021-08-15: V3.0.6 重写了水印文字的画法,并增加水印文字颜色
|
||||
******************************************************************************/
|
||||
|
||||
using System;
|
||||
|
@ -1,4 +1,26 @@
|
||||
using System;
|
||||
/******************************************************************************
|
||||
* SunnyUI 开源控件库、工具类库、扩展类库、多页面开发框架。
|
||||
* CopyRight (C) 2012-2021 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.
|
||||
* 如果您使用此代码,请保留此说明。
|
||||
******************************************************************************
|
||||
* 文件名称: UIComboTreeView.cs
|
||||
* 文件说明: 树形列表框
|
||||
* 当前版本: V3.0
|
||||
* 创建日期: 2020-11-11
|
||||
*
|
||||
* 2021-07-29: V3.0.5 修复SelectedNode=null的问题
|
||||
* 2020-11-11: V3.0.0 增加文件说明
|
||||
******************************************************************************/
|
||||
|
||||
using System;
|
||||
using System.ComponentModel;
|
||||
using System.Drawing;
|
||||
using System.Text;
|
||||
|
@ -20,10 +20,13 @@
|
||||
* 2020-04-25: V2.2.4 功能增强、美化
|
||||
* 2020-07-15: V2.2.6 更改默认配置为原生
|
||||
* 2020-07-18: V2.2.6 重绘水平滚动条
|
||||
* 2020-08-22: V2.2.7 更新了水平和垂直滚动条的显示,优化滚动效果。
|
||||
* 2020-08-22: V2.2.7 更新了水平和垂直滚动条的显示,优化滚动效果
|
||||
* 2020-08-28: V2.2.7 调整水平滚动条
|
||||
* 2021-03-25: V3.0.2 修改垂直滚动条和原版一致,并增加翻页方式滚动。
|
||||
* 2021-03-25: V3.0.2 修改垂直滚动条和原版一致,并增加翻页方式滚动
|
||||
* 2021-04-01: V3.0.2 编辑输入时,用Enter键代替Tab键跳到下一个单元格
|
||||
* 2021-04-29: V3.0.3 设置数据行头部颜色
|
||||
* 2021-05-22: V3.0.4 增加了一个RowHeight,默认23
|
||||
* 2021-06-27: V3.0.4 自定义单元格颜色
|
||||
******************************************************************************/
|
||||
|
||||
using System;
|
||||
|
@ -18,6 +18,8 @@
|
||||
*
|
||||
* 2020-01-01: V2.2.0 增加文件说明
|
||||
* 2020-08-07: V2.2.7 可编辑输入,日期范围控制以防止出错
|
||||
* 2021-04-15: V3.0.3 增加ShowToday显示今日属性
|
||||
* 2021-08-14: V3.0.6 增加可选择年、年月、年月日
|
||||
******************************************************************************/
|
||||
|
||||
using System;
|
||||
|
@ -20,6 +20,7 @@
|
||||
* 2020-07-06: V2.2.6 重写下拉窗体,缩短创建时间
|
||||
* 2020-08-07: V2.2.7 可编辑输入,日期范围控制以防止出错
|
||||
* 2020-09-16: V2.2.7 更改滚轮选择时间的方向
|
||||
* 2021-04-15: V3.0.3 增加ShowToday显示今日属性
|
||||
******************************************************************************/
|
||||
|
||||
using System;
|
||||
|
@ -17,6 +17,9 @@
|
||||
* 创建日期: 2020-09-29
|
||||
*
|
||||
* 2020-09-29: V2.2.8 增加文件说明
|
||||
* 2021-07-10: V3.0.4 增加滚动条颜色属性
|
||||
* 2021-07-31: V3.0.5 可像原生控件一样通过Controls.Add增加
|
||||
* 2021-08-11: V3.0.5 删除点击的Focus事件
|
||||
******************************************************************************/
|
||||
|
||||
using System;
|
||||
|
@ -18,9 +18,10 @@
|
||||
*
|
||||
* 2021-02-10: V3.0.1 增加文件说明
|
||||
* 2021-03-27: V3.0.2 增加字体图标背景时鼠标移上背景色
|
||||
* 2021-06-01: V3.0.4 增加图片与文字的位置
|
||||
* 2021-06-22: V3.0.4 增加ShowSelected,是否显示选中状态
|
||||
******************************************************************************/
|
||||
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
|
@ -19,6 +19,7 @@
|
||||
* 2020-01-01: V2.2.0 增加文件说明
|
||||
* 2020-04-25: V2.2.4 更新主题配置类
|
||||
* 2020-05-21: V2.2.5 增加鼠标滑过高亮
|
||||
* 2021-08-07: V3.0.5 从文件载入图片,并且解除占用
|
||||
******************************************************************************/
|
||||
|
||||
using System;
|
||||
|
@ -17,6 +17,8 @@
|
||||
* 创建日期: 2020-01-01
|
||||
*
|
||||
* 2020-01-01: V2.2.0 增加文件说明
|
||||
* 2021-06-19: V3.0.4 增加方形显示,优化渐变色
|
||||
* 2021-08-07: V3.0.5 默认不显示灯光亮线
|
||||
******************************************************************************/
|
||||
|
||||
using System;
|
||||
|
@ -20,6 +20,10 @@
|
||||
* 2020-04-25: V2.2.4 更新主题配置类
|
||||
* 2020-05-21: V2.2.5 增加鼠标滑过高亮
|
||||
* 开发日志:https://www.cnblogs.com/yhuse/p/12933885.html
|
||||
* 2021-06-03: V3.0.4 修改对象绑定的显示问题
|
||||
* 2021-07-29: V3.0.5 增加多选行
|
||||
* 2021-07-30: V3.0.5 选中项显示方角
|
||||
* 2021-08-04: V3.0.5 增加Items变更的事件
|
||||
******************************************************************************/
|
||||
|
||||
using System;
|
||||
|
@ -19,6 +19,8 @@
|
||||
* 2020-01-01: V2.2.0 增加文件说明
|
||||
* 2020-08-28: V2.2.7 增加节点的Image绘制
|
||||
* 2021-03-20: V3.0.2 增加可设置背景图片
|
||||
* 2021-06-08: V3.0.4 标题选中高亮颜色增加可调整高度
|
||||
* 2021-08-07: V3.0.5 显示/隐藏子节点提示箭头,增加选中项圆角
|
||||
******************************************************************************/
|
||||
|
||||
using System;
|
||||
|
@ -19,6 +19,8 @@
|
||||
* 2020-01-01: V2.2.0 增加文件说明
|
||||
* 2020-07-01: V2.2.6 解决引发事件所有结点重绘导致闪烁;解决滚轮失效问题。
|
||||
* 2020-03-12: V3.0.2 增加设置二级菜单底色
|
||||
* 2021-06-14: V3.0.4 增加右侧图标
|
||||
* 2021-08-07: V3.0.5 显示/隐藏子节点提示箭头
|
||||
******************************************************************************/
|
||||
|
||||
using System;
|
||||
|
@ -18,6 +18,7 @@
|
||||
*
|
||||
* 2020-07-15: V2.2.6 新增分页控件
|
||||
* 2021-03-27: V3.0.2 修正因两次查询数量相等而引起的不刷新
|
||||
* 2021-07-10: V3.0.4 设置总数在页面不超过总页数的情况下不刷新
|
||||
******************************************************************************/
|
||||
|
||||
using System;
|
||||
|
@ -18,6 +18,7 @@
|
||||
*
|
||||
* 2020-01-01: V2.2.0 增加文件说明
|
||||
* 2020-04-25: V2.2.4 更新主题配置类
|
||||
* 2021-05-09: V3.0.3 增加双缓冲,减少闪烁
|
||||
******************************************************************************/
|
||||
|
||||
using System;
|
||||
|
@ -17,6 +17,7 @@
|
||||
* 创建日期: 2021-07-26
|
||||
*
|
||||
* 2020-07-26: V3.0.5 增加管道控件
|
||||
* 2021-07-29: V3.0.5 优化管道连接
|
||||
******************************************************************************/
|
||||
|
||||
using System;
|
||||
|
@ -17,7 +17,9 @@
|
||||
* 创建日期: 2020-01-01
|
||||
*
|
||||
* 2020-01-01: V2.2.0 增加文件说明
|
||||
* 2020-04-19: V2.2 增加数值变化事件
|
||||
* 2020-04-19: V2.2.5 增加数值变化事件
|
||||
* 2021-08-07: V3.0.5 增加垂直方向的进度显示
|
||||
* 2021-08-14: V3.0.6 修改不显示百分比时,显示数值
|
||||
******************************************************************************/
|
||||
|
||||
using System;
|
||||
|
@ -19,6 +19,7 @@
|
||||
* 2020-01-01: V2.2.0 增加文件说明
|
||||
* 2020-04-16: V2.2.1 增加ReadOnly属性
|
||||
* 2020-04-25: V2.2.4 更新主题配置类
|
||||
* 2021-04-26: V3.0.3 增加默认事件CheckedChanged
|
||||
******************************************************************************/
|
||||
|
||||
using System;
|
||||
|
@ -17,6 +17,8 @@
|
||||
* 创建日期: 2020-01-01
|
||||
*
|
||||
* 2020-01-01: V2.2.0 增加文件说明
|
||||
* 2021-05-25: V3.0.4 支持可改背景色
|
||||
* 2021-07-29: V3.0.5 修改滚动条没有文字时自动隐藏
|
||||
******************************************************************************/
|
||||
|
||||
using System;
|
||||
|
@ -17,6 +17,7 @@
|
||||
* 创建日期: 2020-06-29
|
||||
*
|
||||
* 2020-06-29: V2.2.6 新增控件
|
||||
* 2021-07-16: V3.0.5 增加属性控制开启滚动
|
||||
******************************************************************************/
|
||||
|
||||
using System;
|
||||
|
@ -17,6 +17,7 @@
|
||||
* 创建日期: 2021-06-19
|
||||
*
|
||||
* 2021-06-19: V3.0.4 增加文件说明
|
||||
* 2021-06-20: V3.0.4 调整默认显示高度
|
||||
******************************************************************************/
|
||||
|
||||
using System;
|
||||
|
@ -18,6 +18,7 @@
|
||||
*
|
||||
* 2020-01-01: V2.2.0 增加文件说明
|
||||
* 2020-04-25: V2.2.4 更新主题配置类
|
||||
* 2021-05-06: V3.0.3 更新Active状态改变时触发ValueChanged事件
|
||||
******************************************************************************/
|
||||
|
||||
using System;
|
||||
|
@ -19,6 +19,10 @@
|
||||
* 2020-01-01: V2.2.0 增加文件说明
|
||||
* 2020-06-27: V2.2.5 重绘左右选择按钮
|
||||
* 2020-08-12: V2.2.7 标题垂直居中
|
||||
* 2021-04-01: V3.0.2 修改第一个TabPage关不掉的Bug
|
||||
* 2021-06-08: V3.0.4 Tab页标题选中高亮颜色增加可调整高度
|
||||
* 2021-07-14: V3.0.5 支持Tab在下方显示
|
||||
* 2021-08-14: V3.0.6 增加DisposeTabPageAfterRemove标志,移除TabPage后,是否自动销毁TabPage
|
||||
******************************************************************************/
|
||||
|
||||
using Sunny.UI.Win32;
|
||||
|
@ -1,4 +1,26 @@
|
||||
using System.ComponentModel;
|
||||
/******************************************************************************
|
||||
* SunnyUI 开源控件库、工具类库、扩展类库、多页面开发框架。
|
||||
* CopyRight (C) 2012-2021 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.
|
||||
* 如果您使用此代码,请保留此说明。
|
||||
******************************************************************************
|
||||
* 文件名称: UITableLayoutPanel.cs
|
||||
* 文件说明: 动态布局面板
|
||||
* 当前版本: V3.0
|
||||
* 创建日期: 2021-07-18
|
||||
*
|
||||
* 2021-07-18: V3.0.5 增加文件说明
|
||||
* 2021-07-18: V3.0.5 更新了放在TableLayoutPanel里控件的自定义颜色问题
|
||||
******************************************************************************/
|
||||
|
||||
using System.ComponentModel;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace Sunny.UI
|
||||
|
@ -18,8 +18,14 @@
|
||||
*
|
||||
* 2020-01-01: V2.2.0 增加文件说明
|
||||
* 2020-06-03: V2.2.5 增加多行,增加滚动条
|
||||
* 2020-09-03: V2.2.7 增加FocusedSelectAll属性,激活时全选。
|
||||
* 2020-09-03: V2.2.7 增加FocusedSelectAll属性,激活时全选
|
||||
* 2021-04-15: V3.0.3 修改文字可以居中显示
|
||||
* 2021-04-17: V3.0.3 不限制高度为根据字体计算,可进行调整,解决多行输入时不能输入回车的问题
|
||||
* 2021-04-18: V3.0.3 增加ShowScrollBar属性,单独控制垂直滚动条
|
||||
* 2021-06-01: V3.0.4 增加图标和字体图标的显示
|
||||
* 2021-07-18: V3.0.5 修改Focus可用
|
||||
* 2021-08-03: V3.0.5 增加GotFocus和LostFocus事件
|
||||
* 2021-08-15: V3.0.6 重写了水印文字的画法,并增加水印文字颜色
|
||||
******************************************************************************/
|
||||
|
||||
using System;
|
||||
|
@ -18,6 +18,7 @@
|
||||
*
|
||||
* 2020-07-21: V2.2.6 增加控件
|
||||
* 2020-07-25: V2.2.6 更新绘制
|
||||
* 2021-08-16: V3.0.6 增加ToolTip接口,解决类似UITextBox这类的组合控件无法显示ToolTip的问题
|
||||
******************************************************************************/
|
||||
|
||||
using System;
|
||||
|
@ -17,7 +17,7 @@
|
||||
* 创建日期: 2020-01-01
|
||||
*
|
||||
* 2020-01-01: V2.2.0 增加文件说明
|
||||
*
|
||||
* 2021-04-11: V3.0.2 增加垂直显示方式
|
||||
******************************************************************************/
|
||||
|
||||
using System;
|
||||
|
@ -18,6 +18,8 @@
|
||||
*
|
||||
* 2020-01-01: V2.2.0 增加文件说明
|
||||
* 2020-08-14: V2.2.7 增加左右列表项个数变化事件
|
||||
* 2021-07-18: V3.0.5 新增两个事件,可获取左侧、右侧Item点击事件
|
||||
* 2021-08-08: V3.0.5 增加了显示多个移动的属性
|
||||
******************************************************************************/
|
||||
|
||||
using System;
|
||||
|
@ -19,6 +19,7 @@
|
||||
* 2020-05-05: V2.2.5 增加文件
|
||||
* 2020-07-07: V2.2.6 全部重写,增加圆角,CheckBoxes等
|
||||
* 2020-08-12: V2.2.7 更新可设置背景色
|
||||
* 2021-07-19: V3.0.5 调整了显示CheckBoxes时图片位置
|
||||
******************************************************************************/
|
||||
|
||||
using System;
|
||||
|
@ -16,7 +16,8 @@
|
||||
* 当前版本: V3.0
|
||||
* 创建日期: 2021-08-08
|
||||
*
|
||||
* 2021-08-08: V3.0.5 增加阀门控件
|
||||
* 2021-08-07: V3.0.5 增加阀门控件
|
||||
* 2021-08-08: V3.0.5 完成四个方向的阀门
|
||||
******************************************************************************/
|
||||
|
||||
using System;
|
||||
|
@ -17,6 +17,7 @@
|
||||
* 创建日期: 2020-01-01
|
||||
*
|
||||
* 2020-01-01: V2.2.0 增加文件说明
|
||||
* 2021-07-18: V3.0.5 将字体图标最大尺寸从64调整到128
|
||||
******************************************************************************/
|
||||
|
||||
using System.Drawing;
|
||||
|
@ -17,6 +17,8 @@
|
||||
* 创建日期: 2020-01-01
|
||||
*
|
||||
* 2020-01-01: V2.2.0 增加文件说明
|
||||
* 2021-04-26: V3.0.3 代码生成增加Switch类型,代码生成增加Combobox类型
|
||||
* 2021-05-19: V3.0.3 动态生成表单,增加校验方法
|
||||
******************************************************************************/
|
||||
|
||||
using System;
|
||||
|
@ -24,6 +24,8 @@
|
||||
* 2020-09-17: V2.2.7 增加了窗体可拉拽调整大小ShowDragStretch属性
|
||||
* 2021-02-04: V3.0.1 标题栏增加扩展按钮
|
||||
* 2021-05-06: V3.0.3 增加属性,标题栏可放置控件
|
||||
* 2021-08-17: V3.0.6 增加TitleFont属性
|
||||
* 2021-08-17: V3.0.6 适应主屏幕任务栏在屏幕各个方向均可
|
||||
******************************************************************************/
|
||||
|
||||
using System;
|
||||
|
@ -18,6 +18,8 @@
|
||||
*
|
||||
* 2020-01-01: V2.2.0 增加文件说明
|
||||
* 2020-05-05: V2.2.5 增加下拉选择框,进度提升窗体
|
||||
* 2021-05-09: V3.0.3 增加RemovePage接口,更改GetTopMost为原生接口TopMost
|
||||
* 2021-06-27: V3.0.4 增加一个反馈的接口,Feedback,Page可将对象反馈给Frame
|
||||
******************************************************************************/
|
||||
|
||||
using System;
|
||||
|
@ -1,4 +1,25 @@
|
||||
using System.ComponentModel;
|
||||
/******************************************************************************
|
||||
* SunnyUI 开源控件库、工具类库、扩展类库、多页面开发框架。
|
||||
* CopyRight (C) 2012-2021 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.
|
||||
* 如果您使用此代码,请保留此说明。
|
||||
******************************************************************************
|
||||
* 文件名称: UIWaitForm.cs
|
||||
* 文件说明: 等待窗体
|
||||
* 当前版本: V3.0
|
||||
* 创建日期: 2020-10-13
|
||||
*
|
||||
* 2020-10-13: V3.0.0 增加文件说明
|
||||
******************************************************************************/
|
||||
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace Sunny.UI
|
||||
{
|
||||
|
@ -17,6 +17,10 @@
|
||||
* 创建日期: 2020-01-01
|
||||
*
|
||||
* 2020-01-01: V2.2.0 增加文件说明
|
||||
* 2021-05-21: V3.0.4 更改了下页面切换重复执行的Init事件调用
|
||||
* 2021-06-20: V3.0.4 增加标题行,替代UITitlePage
|
||||
* 2021-07-18: V3.0.5 修复OnLoad在加载时重复加载两次的问题,增加Final函数,每次页面切换,退出页面都会执行
|
||||
* 2021-08-17: V3.0.6 增加TitleFont属性
|
||||
******************************************************************************/
|
||||
|
||||
using System;
|
||||
|
@ -1,4 +1,25 @@
|
||||
using Microsoft.Win32;
|
||||
/******************************************************************************
|
||||
* SunnyUI 开源控件库、工具类库、扩展类库、多页面开发框架。
|
||||
* CopyRight (C) 2012-2021 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.
|
||||
* 如果您使用此代码,请保留此说明。
|
||||
******************************************************************************
|
||||
* 文件名称: UEnvironment.cs
|
||||
* 文件说明: 判断.Net运行环境类
|
||||
* 当前版本: V3.0
|
||||
* 创建日期: 2021-06-02
|
||||
*
|
||||
* 2021-06-02: V3.0.4 增加文件说明
|
||||
******************************************************************************/
|
||||
|
||||
using Microsoft.Win32;
|
||||
using System;
|
||||
|
||||
namespace Sunny.UI
|
||||
|
@ -17,6 +17,8 @@
|
||||
* 创建日期: 2020-01-01
|
||||
*
|
||||
* 2020-01-01: V2.2.0 增加文件说明
|
||||
* 2021-07-12: V3.0.5 增加紫色主题
|
||||
* 2021-07-18: V3.0.5 增加多彩主题,以颜色深色,文字白色为主
|
||||
******************************************************************************/
|
||||
|
||||
using System;
|
||||
|
@ -16,7 +16,8 @@
|
||||
* 当前版本: V3.0
|
||||
* 创建日期: 2020-01-01
|
||||
*
|
||||
* 2020-04-19: V2.2 增加文件说明
|
||||
* 2020-04-19: V2.2.0 增加文件说明
|
||||
* 2021-07-24: V3.0.5 内置字符串已经处理完国际化
|
||||
******************************************************************************/
|
||||
|
||||
namespace Sunny.UI
|
||||
|
@ -1,4 +1,26 @@
|
||||
namespace Sunny.UI
|
||||
/******************************************************************************
|
||||
* SunnyUI 开源控件库、工具类库、扩展类库、多页面开发框架。
|
||||
* CopyRight (C) 2012-2021 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.Common.dll can be used for free under the MIT license.
|
||||
* If you use this code, please keep this note.
|
||||
* 如果您使用此代码,请保留此说明。
|
||||
******************************************************************************
|
||||
* 文件名称: UTranslate.cs
|
||||
* 文件说明: 多语翻译接口
|
||||
* 当前版本: V3.0
|
||||
* 创建日期: 2021-07-23
|
||||
*
|
||||
* 2021-07-23: V3.0.5 增加文件说明
|
||||
******************************************************************************/
|
||||
|
||||
|
||||
namespace Sunny.UI
|
||||
{
|
||||
public interface ITranslate
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user