New Post: How to make MessageBox Modal for current window.
Is there a way to show the MessageBox from anywhere in the code (In my case in the ViewModel) to be modal in the current window so you can't drag it outside the window?
View ArticleNew Post: WatermarkTextBox and decimal value
I want use the WatermarkTextBox and show a decimal value in the format "0.00" or "25.75" How can I do that with MVVM? If I bind the Text-Property to my ViewModel then it show only a "0" Here a example...
View ArticleNew Post: WatermarkTextBox and decimal value
Add to the binding: StringFormat={}{0:0.00}
View ArticleNew Post: WatermarkTextBox and decimal value
Wow - so easy It works fine for me Have a nice Weekend ;-)
View ArticleNew Post: How to make MessageBox Modal for current window.
My first guest would be that you need to add an WindowContainer on each of your windows, add a MessageBox (not visible at first) to each of theses WindowContainers, And map the Visibility and Text...
View ArticleNew Post: Support for coded UI tests
We didn't consider any automated UI test in the toolkit development yet.
View ArticleNew Post: How to specify AutoHide side of AvalonDock?
Hi, I’m testing AvalonDock control included in Extended WPF Toolkit 2.0. I have the following xaml.<Window x:Class="AvalonDockTest.MainWindow"...
View ArticleNew Post: How to add the category order in Property Grid?
now the Category is using the alphabetical order, is there any attribute that is used to specify the category order?
View ArticleNew Post: ChildWindow Inner Border
Hello! Is there a way to disable the inner border of a ChildWindow? All i want is to have a complete black window. Thank you!
View ArticleNew Post: How to add the category order in Property Grid?
The CategoryOrderAttribute can be use in the "Plus" version of the toolkit. You can find the "Plus" version here : http://wpftoolkit.com/toolkit/
View ArticleNew Post: ChildWindow Inner Border
If your Window has the following properties set : Background="Black" BorderBrush="Black" BorderThickness="0" WindowBackground="Black" WindowBorderBrush="Black" WindowBorderThickness="0" and you still...
View ArticleNew Post: AvalonDock - Window disappears when dragging from tabbed document...
Anyone have any feed back on this problem im having. When dragging a document out of the docking pane the window disappears, after i release the mouse it comes back however if i try to drag it to...
View ArticleNew Post: How to add the category order in Property Grid?
Thanks. By the way, I know the [PropertyOrder()] attribute is used to specify the property order in category sorting, but when I click alphabetical sorting, however, the [PropertyOrder()] attribute...
View ArticleNew Post: Style for DataGrid Rows
Hello... I am trying to create my own theme for DataGridControl. I have composed following style for DataGridControl<Style TargetType="{x:Type xcdg:DataGridControl}"><Setter...
View ArticleNew Post: Here is the complete style to restyle the DateTimePicker
To restyle the DateTimePicker. You will need to replace my color values with your own. I also could not use the converters in Extended Toolkit so i had to create them in my project. Hope this helps...
View ArticleNew Post: IntegerUDown binding problem
From a user : Having an issue with binding to Value. I have a second control with {Binding Value} on the spinner. If I click the "up" button, the spinner's value changes but this is not propagated. It...
View ArticleNew Post: IntegerUDown binding problem
Could you give a code snippet of the problem ? Here's what I tried :<xctk:IntegerUpDown x:Name="myIntegerUpDown" Width="200" Watermark="Watermark" /> <xctk:IntegerUpDown...
View ArticleNew Post: ChildWindow changes
When the ChildWindow is modal, nothing but the ChildWindow should be available (the windowContainer blocks the controls behind). When this modal window is closed, and there are no more modal Windows...
View Article