HandyControl icon indicating copy to clipboard operation
HandyControl copied to clipboard

Contains some simple and commonly used WPF controls

Results 246 HandyControl issues
Sort by recently updated
recently updated
newest added

**Is your feature request related to a problem? Please describe.** Currently floatingblock is fix set to trigger on mouse click. But it would be very useful if we could just...

:factory: enhancement

Message box with OkCancel buttons can be closed by ESC key, Wish messagebox with YesNo buttons can also be closed by ESC key, so that users do not need to...

:factory: enhancement

### Describe the bug With a simple CheckComboBox, two binding errors on CheckComboBoxItem's VerticalAlignment and HorizontalAlignment properties are triggered at runtime. I replicated it in an empty WPF project targeting...

**Describe the bug** If in the checkComboBox there is too many item, the SelectAll will select only the visible items. **To Reproduce** Steps to reproduce the behavior: You can find...

### Describe the bug [ExcelAddInHCSimple.zip](https://github.com/HandyOrg/HandyControl/files/8697040/ExcelAddInHCSimple.zip) ### Issue Description: When _**HandyControl**_ and _**HandyControl.Lang.en**_ package for developing Windows on an Excel VSTO Addin development, the language is always defaulting to Chinese, although...

使用` hc:Window.NonClientAreaContent` 自定义了客户端内容,并且使用了`hc:WindowAttach.IsDragElement="True"`使该区域可以拖拽,当拖拽到左右两侧时均可实现正常的停靠效果,当拖拽到顶部`最大化`后,无法进行拖拽操作,只能通过手动点击按钮进行还原。还原后可再次进行拖拽

请求公开窗体的 最小化,最大化,关闭等按钮。 在dialog进行异步操作等待时用户可直接关闭窗口,造成一些不必要的操作继续被执行。需将dialog与窗体按钮进行绑定。 目前解决办法: if (this.GetTemplateChild("ButtonClose") is System.Windows.Controls.Button button) button.SetBinding(IsEnabledProperty, new Binding() { Source = AdornerDecorator.Child,Path= new PropertyPath("IsEnabled") });

### Describe the bug https://user-images.githubusercontent.com/4510984/166149377-997838bf-49a6-4e17-abd2-92ce87e23df5.mp4 ### Steps to reproduce the bug See the video and reproduce by the demo. [ScrollViewerDemo.zip](https://github.com/HandyOrg/HandyControl/files/8599072/ScrollViewerDemo.zip) ### Expected behavior Easy drag no matter has margin. ###...

### Describe the bug The tooltip is not displayed as expected. https://user-images.githubusercontent.com/4510984/165857862-58d715ab-1deb-4240-9dab-9c09a61f7d23.mp4 [AutoTooltipDemo.zip](https://github.com/HandyOrg/HandyControl/files/8587055/AutoTooltipDemo.zip) ### Steps to reproduce the bug See the video and reproduce by the demo. ### Expected behavior...

:thinking: pending discussion

在TabItem点击关闭其它,当遇到不可关闭的Tab时会停止,不会继续关闭后面的Tab,是否可以跳过这个页面继续关闭其它Tab? 在/src/Shared/HandyControl_Shared/Controls/TabControl/TabPanel.cs文件中的第398行,把return替换成continue internal void CloseOtherItems(TabItem currentItem) { var actualItem = currentItem != null ? ItemContainerGenerator.ItemFromContainer(currentItem) : null; var list = GetActualList(); if (list == null) return; IsInternalAction = true; for...