New Post: CheckedListbox on Windows Server 2008 R2
The same error occurs if you disable 'Use visual styles on windows and buttons' under 'System Properties' (Win+Pause) -> 'Advanced' -> Visual Effects' on a Windows 7. And then only when the...
View ArticleNew Post: Need current visible area bounds for Zoombox
How can I determine the complete bounds for the current Zoombox view in content coordinates? I've tried examining properties of CurrentView in CurrentViewChanged handler and Zoombox's ContentPresenter...
View ArticleNew Post: change DateTimeUpDown background OnMouseOver and IsPressed
Hi, It is working in my test application. We got to have something different. If you set the "Background" property to "Red" before setting the "Template" property, do you see the RepeatButtons with a...
View ArticleNew Post: Obtain selected values from a CheckComboBox
string str = CheckComboBox.SelectedValue; It will return selected values in comma(,) separated format.
View ArticleNew Post: How to convert ObservableCollection returned by...
How to convert ObservableCollection<objext> returned by CheckComboBox.SelectedItems to List<ClassName>?
View ArticleNew Post: How to convert ObservableCollection returned by...
Hi, using System.Linq, you can do : List<Data> test = new List<Data>( _checkComboBox.SelectedItems.Cast<Data>() );
View ArticleNew Post: AvalonDock AutoHidden Panel and Touch
When I have a panel that is in the AutoHidden state, the flyout does not respond to touch. Is there a solution to this? My current layout has a left side docked panel but after hitting the pin button...
View ArticleNew Post: change DateTimeUpDown background OnMouseOver and IsPressed
Hi, the background won't change even when i set the RepeatButton Background property to red in the ButtonSpinner style. have a look:<DataTemplate x:Key="DefaultWatermarkTemplate">...
View ArticleNew Post: Populate Select types combo in CollectionEditor with NewItemTypes
Thanks for the reply. Here is a simplified version of my code: xaml (in file MainWindow.xaml)<Window x:Class="MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"...
View ArticleNew Post: change DateTimeUpDown background OnMouseOver and IsPressed
Hi, From what I see, if you want to modify the repeat buttons, you can only set the style for <Style x:Key="{ComponentResourceKey TypeInTargetAssembly={x:Type themes:ResourceKeys},...
View ArticleNew Post: Populate Select types combo in CollectionEditor with NewItemTypes
Hi, I copied your code in a new project and it worked perfectly in a C# and a VB application. The "this is a string" appeared in the ListBox. I created issue...
View ArticleNew Post: Populate Select types combo in CollectionEditor with NewItemTypes
Given that yours worked, I assumed I must not have the latest version of the toolkit. This was indeed the case (I was using version 2.0). I have now downloaded version 2.1 and it works. I have also...
View ArticleNew Post: Populate Select types combo in CollectionEditor with NewItemTypes
Is it possible to update what is displayed in the List Box when an associated property is changed. For instance if in the above code I had instead: Public Overrides Function ToString() As String Return...
View ArticleNew Post: Populate Select types combo in CollectionEditor with NewItemTypes
Hi, You can set the style for the ItemTemplate of the ListBox in the CollectionControl. Here's how :<xctk:CollectionControl Height="240" HorizontalAlignment="Left" Name="CollectionControl1"...
View ArticleNew Post: Populate Select types combo in CollectionEditor with NewItemTypes
Of course! I should have realised DataBinding would solve all my problems. Thanks very much.
View ArticleNew Post: An example on ZoomBox
Anybody has a example on zoombox?..I am implementing a zoombox control on a bar chart but getting weird results Thanking in Advance Himani
View ArticleNew Post: An example on ZoomBox
Hi, The current example available is in the Live Explorer App. It is available on this page : https://wpftoolkit.codeplex.com/ It gives you access to the XAML and Code-Behind.
View ArticleNew Post: How to change the user-defined property value description in...
How to remove the property value "Samples.Modules.PropertyGrid.View.ExpandablePro..." in the follow image? It is a class namespace and always displayed.
View Article