New Post: XamlParseException on xctk:MaskedTextBox
Well, nevermind. I had tried every possible thing I could think of, removing the style, rebuilding, restarting Visual Studio, etc. I finally excluded the resource dictionary from the project and added...
View ArticleNew Post: Editable combobox problem
I don't have all your code, but using this code, it works :<Window x:Class="WpfApplication40.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"...
View ArticleNew Post: Editable combobox problem
Thank you for your answer. I couldn't get it work in my context without using the"Text" property of the combo. The binding of this property was not correct in my first post ! (missing RelativeSource)...
View ArticleNew Post: Hep with Rogue UI Element
Hello, I am having a problem figuring out why this element is overlaid on top of the column headers. I have used snoop and the live visual tree in visual studio to try and identify this translucent...
View ArticleNew Post: Message Box ShowDialog
I want execution to stop when I show a message box. Per the documentation under Method:"ShowDialog" "Display the MessageBox window and returns only when this MessageBox closes. " When I try this I get...
View ArticleNew Post: Message Box ShowDialog
Hi, a) If you use a WindowContainer, call ShowMessageBox(); b) If you don't use a WindowContainer, call ShowDialog(); Documentation will be update to : This method is not intended to be called while...
View ArticleNew Post: Message Box ShowDialog
Other than the documentation errors in the real question is: How to get Message Box to halt execution until complete?
View ArticleNew Post: Message Box ShowDialog
Hi, ShowDialog method will stop execution. You can test it with a button : private void Button_Click( object sender, RoutedEventArgs e ) { var msgBox = new Xceed.Wpf.Toolkit.MessageBox() { Caption =...
View ArticleNew Post: Grouping and virtualization
Hi, i am looking for a simple example on how to use Grouping in virtualized datagrid in code i have setup a virtualized datagrid with entity framework and a DataGridVirtualizingCollectionViewSource by...
View ArticleNew Post: Zoombox controlled externaly
Hi i want to make an external block of buttons(outside of Zoombox control) to manage zoombox content(I.e center, fill bounds ). Currently Commands are RoutedUICommand. So if i use them as a Value for...
View ArticleNew Post: PropertyGrid EditorTemplateDefinitions as Resources
If I create a set of EditorTemplateDefinitions in a resource dictionary how can I then assign them to instances of the PropertyGrid? At the moment I can define the DataTemplate section as a resource...
View ArticleNew Post: AutoCAD Custom UpDown
Based on Extended WPF Toolkit I want to create my own CommonNumericUpDown<Station> for AutoCAD Stations along Alignments. This works pretty fine in a StandAlone-WPF-App. If I netload it in...
View ArticleNew Post: MaskedTextBox/ValueRangeText box clearing text OnLostFocus
Hi I downloaded the last version, 2.6.0, of the community edition toolkit and this issue is still not fixed. Any plans to fix it ? Thanks
View ArticleNew Post: MaskedTextBox/ValueRangeText box clearing text OnLostFocus
Hi, As defined in issue 21957, it is fixed in v2.8, which is currently available to Plus users. Community users should have this version later this year.
View ArticleNew Post: Zoombox controlled externaly
Hi, Simply set a CommandTarget to be the ZoomBox :<Grid> <xctk:Zoombox x:Name="_zoomBox"> <Image Source="Default.jpg" /> </xctk:Zoombox> <StackPanel> <Button...
View ArticleNew Post: IntegerUpDown not triggering binding property
Hello, I'm using the IntegerUpDown box in my project and I have its Value bound to a property. When I type integers it works beautifully, however if I type in a non-numeric character it does not...
View ArticleNew Post: Update item names in CollectionControlDialog from PropertyGrid
I am using the PropertyGrid to edit a class structure. Some of the members are collections of objects, which can be edited with the CollectionControlDialog. The classes in the collections have a Name...
View ArticleNew Post: All WPF toolkit controls not recognized in Designer
I also encountered this. I had to unblock all of the .dlls:Right-click on the .dllGo to PropertiesLook for the "Unblock" buttonClick OK
View ArticleNew Post: AvalonDock - overlaying a floating window; zIndex issue
Hi, I'm trying to style AvalonDock floating windows in such a way that I can show an overlay over all of them. I'm planning to use this for a dialog service, which is intended to overlay all floating...
View Article