HandyControl
HandyControl copied to clipboard
Contains some simple and commonly used WPF controls
值得一提的是,下图中的 before 一侧,文本框的边框变得几乎不可见了,这是由于同时设置了父元素 `root` 和子元素 `border` 的 `opacity` 为 `0.4` 导致的,这使得 `border` 的 `opacity` 变为 `0.16` (0.4*0.4). https://github.com/HandyOrg/HandyControl/blob/4146ee523eada5aa514b270c46c0f197211522a8/src/Shared/HandyControl_Shared/Themes/Styles/Base/TextBoxBaseStyle.xaml#L139-L154 
Since the `Theme.xaml` will auto generate before build, so it's not necessary.
### Test Code ```xaml ``` 

### Describe the bug 这是3.5.1版本的异常错误提示效果:  这是老版本3.4.0的正常效果:  ### Steps to reproduce the bug 这是一个TextBox,定义如上,默认其错误提示文字应该是红色,实际如图是黑色 ### Expected behavior _No response_ ### Screenshots _No response_ ### NuGet package version None ###...
### Describe the bug ImageBrowser Show() 弹框关闭后,图片资源未释放,无法删除图片 ### Steps to reproduce the bug **1、代码中创建ImageBrowser对象,注册Closed事件,并弹框展示** string previewImageFullPath = “D:\tmp\imgPreView\test.jpg” ImageBrowser imageBrowser = new ImageBrowser(); imageBrowser.Closed += ImageBrowser_Closed; imageBrowser.Show(); **2、在Closed事件中删除第一步中预览的图片** if (File.Exists(previewImageFullPath...
### Describe the bug 1. 不能正确 Measure 大小 2. 布局在某些行为上与 WinUI3 不一致 3. 编写 XAML 时, 预览不会更新 明明是居中, 它却占满了整个宽度, 明明有内容, 却没有被撑起来  同时指定靠左, 以及水平居中, 理论上它应该忽略其中一个设置, 但在这里, 它既不是在左边, 也不是在中间  ###...