New Post: Busy Indicator Template problem
I've tried to change color of Border inside busycontent ContentPresenter to match my application style. First I've tried to set Background property of BusyIndicator, but it didn't help. That Border...
View ArticleNew Post: Busy Indicator Template problem
Update: When I move Style to UserControl resources of a control where I use BusyIndicator it works like charm.
View ArticleNew Post: CheckListBox, Selecting (checking) items by code (c#, manually)
Help! I am a very new newbie to WPF and I am having the same problem. When I initially load my CheckListBox (with a list of directories), I want all items to be checked but no matter what I do, it...
View ArticleNew Post: ChildWindow changes
Maybe it will help if I post all of my code:<Grid x:Name="MainGrid"> <ExtendedToolkit:WindowContainer Name="xWindowContainer"> <ExtendedToolkit:ChildWindow Name="ChildWindow"...
View ArticleNew Post: CheckListBox, Selecting (checking) items by code (c#, manually)
Try using "searchDirectoriesListBox.SelectedItems.Add( cbi )" to add an item in the SelectedItems collection of the CheckListBox. To make sure the SelectedItems is set, try do do it in a Loaded...
View ArticleNew Post: CheckListBox, Selecting (checking) items by code (c#, manually)
That worked great, thanks so much!
View ArticleNew Post: DataGrid CurrentItem null
I'm see that the CurrentItem property of my DataGrid (version 2.0.0 May 2013) can be null depending on how I access the property. I have a button in the footer of the grid. If I use the click event of...
View ArticleNew Post: ChildWindow changes
Hi, I you want to have the ChilWindow in front of the other controls AND want to be able to edit the other controls, put the ChildWindow.IsModal to False. This way, the ChildWindow won't block the...
View ArticleNew Post: DataGrid styling not possible for some components
I have styles to handle a lot of repetitive code when using some components in the grid. Currently I style the grid, ColumnManagerRow, TableflowView, edit and content templates. I can not seem to be...
View ArticleNew Post: DataGrid CurrentItem null
Issue https://wpftoolkit.codeplex.com/workitem/19953 has been created.
View ArticleNew Post: Rowheight
Found this. It may help...http://xceed.com/CS/forums/thread/28254.aspx
View ArticleNew Post: ChildWindow changes
See edited code in previous comment, I also put window container last now, but even though my "ChildWindowVisible" is set to Closed, I can't click on any of the control on the background. If I put...
View ArticleNew Post: ChildWindow changes
Could you attach a solution file (a sample) that could be tested on our side ? As for the background color that is not grayed out, you can now set any color to the WindowContainer when a modal window...
View ArticleNew Post: CheckComboBox with MVVM
I can confirm that v2.0 does fix this issue for me. (Like 1.9, I grabbed it from NuGet.)
View ArticleNew Post: ChildWindow changes
I just used Nuget to downgrade back to 1.9 and everything is working perfectly again. I don't really have the time for trial and error now. I will upgrade again at 2.1 and then make the changes &...
View ArticleNew Post: ChildWindow changes
The ModalBackgroundBrush is a Brush, so it can be semi-transparent. It's better for it to be semi-transparent so a user can se the control behind the WindowContainer.
View ArticleNew Post: MessageBox and Application Losing Focus Issue
It seems MessageBox (Xceed.Wpf.Toolkit) suffers the following issue (http://stackoverflow.com/questions/3144004/wpf-app-loses-completely-focus-on-window-close), the same as WPF-own's MessageBox. For...
View ArticleNew Post: Custom FormatString
Hello! I would like to create some custom FormatStrings for my DoubleUpDown Control. Like (mm, cm, m) How can i do that? Cheers Balo
View ArticleNew Post: MessageBox and Application Losing Focus Issue
From what I understand, you are using 2 Windows (1 as main and the other as a child with owner property set to mainWindow). When MessageBox's Yes button is clicked, the window child should close and...
View Article