XceedBoucherS
XceedBoucherS
Hello, you can always create your own DateTimePicker and retrieve the PART_TextBox control from OnApplyTemplate(): ` public class MyDateTimePicker : DateTimePicker { public override void OnApplyTemplate() { base.OnApplyTemplate(); var textBox...
Hi, For now, there is no easy way since the CheckListBox's default ControlTemplate uses an ItemsPresenter. You best option would be to redefine the ControlTemplate to use a WrapPanel. Maybe...
Hello, what are you pointing at exactly ? The BusyIndicator Border itself ? If yes, I can see there are no easy properties offered to customize this. For the Transparency,...
Hi, The last zip files for Extended WPF Toolkit - v4.5.0 on GitHub has been uploaded on November 25th, 2022. No one has encounter this type of behavior. Which zip...
Hi, You are right. This doesn't work in .NET5+. It currently only works in .NETFramework. It will be fixed in v4.6. In the meantime, if you have the source code,...
Hi, Currently, yes, every typed value in the TextBox of the NumericUpDown raises a ValueChanged event. The same when a spinner button is clicked. If you set the "UpdateValueOnEnterKey" property...
Hi, This is happening because if the Value is "25", on a click of a Spinner, the Spinned event is raised. In the callback, you call doubleUpDown.CommitInput(); which takes the...
Hi @stinos , Thank you for reproting this. Since this issue is hard to reproduce, we can only add more checks in the UpdateContainedFloatingWindowTaskbarTitle() method. Here's the updated content of...
Hi @czh098tom, Thank you for your example. Yes, I can reproduce the issue with your sample. But this is already fixed in the latest release, v4.6, which is already available...
Hi You must specify a SelectedObject for the PropertyGrid to display the properties of the object. Also, if you set the PropertyDefinitions of the PropertyGrid, only the properties FirstName, FavoriteColor...