New Post: IntegerUpDown not triggering binding property
Hi, You can listen to event UpDownBase.InputValidationError. This event will be raised when the focus goes away from the IntegerUpDown (or "Enter" key is pressed) while non-numeric characters are typed...
View ArticleNew Post: Magnifier memory leak?
Hi all, I've been using the magnifier control for an image viewing project where a user can open multi-page TIFF images, change page, rotate etc. The magnifier works great but I seem to be having a...
View ArticleNew Post: Update item names in CollectionControlDialog from PropertyGrid
Hi, Toolkit v3.0 will have a fix for this issue.
View ArticleNew Post: Magnifier memory leak?
Hi, This is interesting. Can you submit a small sample so we could see how you create and use the Magnifier ? Thanks.
View ArticleNew Post: AvalonDock - overlaying a floating window; zIndex issue
Hi, The LayoutFloatingWindowControl is a Window. Its content is a FloatingWindowContentHost, which is a HwndHost. Based on this MSDN Technology Regions Overview...
View ArticleNew Post: AvalonDock - overlaying a floating window; zIndex issue
Hi Boucher, thanks for looking into this! Unfortunately, these modifications didn't quite work out for me - e.g. while the SC_MOVE event was called, setting it to handled = true didn't have any effect...
View ArticleNew Post: AvalonDock - overlaying a floating window; zIndex issue
Hi BogeyLab, Hum, this is strange that setting handled = true into SC_MOVE didn't prevent the floating window from being moved around. I can move the floating Window, but as soon as I drop it, I can't...
View ArticleNew Post: AvalonDock - overlaying a floating window; zIndex issue
Just make sure to add : if( host != null ) { host.Dispose(); } in LayoutFloatingWindowControl.OnClosed() method, right after : var host = Content as FloatingWindowContentHost; to prevent any crash;
View ArticleNew Post: AvalonDock - overlaying a floating window; zIndex issue
Great, thanks again for your input! I will go down this route then, and remove the HwndHost / FloatingWindowContentHost. I'll post in here in case I encounter any bugs or side effects related to this...
View ArticleNew Post: CheckListBox : SelectedValue not updated on SelectedItems.Add/Remove
A user wrote :"If i add item to SelectedItems by use SelectedItems.Add(object) , the ItemSelectionChanged event raise , this is fine but when i check SelectedValue i do not find the value of this...
View ArticleNew Post: CheckListBox : SelectedValue not updated on SelectedItems.Add/Remove
I cannot reproduce the bug. Can you submit a sample ? Here's one that works :<StackPanel> <xctk:CheckListBox x:Name="_checkListBox"/> <TextBlock Text="{Binding SelectedValue,...
View ArticleNew Post: Feature Request: Ticks on RangeSlider
It would be very useful to have tick marks and snapping on the range slider. It doesn't seem possible to add this in without creating an entirely new control, so I'm adding a request for it here.
View ArticleNew Post: Feature Request: Ticks on RangeSlider
Hi, Issue https://wpftoolkit.codeplex.com/workitem/22198 has been created.
View ArticleNew Post: Is there a way to sort property categories
Hi, I have a propertygrid with some categories, and I would like to have the most imporant category at the top - right now they appear in alphabetical order. Is there any way to get the categories...
View ArticleNew Post: Is there a way to sort property categories
Hi, Yes you can. Try adding the CategoryOrder attribute on your object. Something like :[CategoryOrder("Information", 0)] [CategoryOrder( "Conections", 1 )] [CategoryOrder( "Other", 2 )] public class...
View ArticleNew Post: DateTimePicker popup size
A users says:"For long months (i.e., December) the date part at the top of the dropdown calendar is being truncated. For example, it looks like "December, 2" instead of "December, 2016". Is there a way...
View ArticleNew Post: DateTimePicker popup size
The DateTimePicker's popup uses a Microsoft Calendar which has a standard size. We cannot reproduce the issue and the December 2016 calendar title is completely visible....
View ArticleNew Post: BeepOnError not working for ValueRangeTextBox
A users says :"For the ValueRangeTextBox I have BeepOnError = True and ValueDataType="{x:Type s:Single}" When I enter an alphanumeric into there is no beep. What are the conditions that will trigger...
View ArticleNew Post: BeepOnError not working for ValueRangeTextBox
Issue https://wpftoolkit.codeplex.com/workitem/22205 has been created.
View Article