New 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 ArticleCreated Issue: Populate Select types combo in CollectionEditor with...
Based on discussion https://wpftoolkit.codeplex.com/discussions/528318.
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 ArticleCommented Issue: Populate Select types combo in CollectionEditor with...
Based on discussion https://wpftoolkit.codeplex.com/discussions/528318.Comments: ** Comment from web user: BoucherS ** Everything is working fine in C# and VB. Attached is the working sample.
View ArticleCommented Issue: DateTimePicker Min/Max are not reflected in dropdown...
If I set a min and a max on the DateTimePicker, The drop down calendar still allows to select a date behond the maximum.Comments: ** Comment from web user: GreyCloud ** Please fix this bug!
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 ArticleEdited Issue: DateTimePicker Min/Max are not reflected in dropdown calendar...
If I set a min and a max on the DateTimePicker, The drop down calendar still allows to select a date behond the maximum.
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 ArticleCommented Issue: DateTimePicker Min/Max are not reflected in dropdown...
If I set a min and a max on the DateTimePicker, The drop down calendar still allows to select a date behond the maximum.Comments: ** Comment from web user: BoucherS ** This bug will be fixed in v2.3.
View ArticleClosed Issue: Populate Select types combo in CollectionEditor with...
Based on discussion https://wpftoolkit.codeplex.com/discussions/528318.
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 Article