New Post: MessageBox - Changing Style - Better or more detail please.
Just to be clear for anyone else coming across this the reference to the namespace was needed. Eg the xmlns:toolkit line...
View ArticleNew Post: PropertyGrid ExpandableObject. How to make expanded by default?
I have the same problem. The property text of the ExpandleObject doesn't update after change a child property.
View ArticleNew Post: CheckComboBox doesn't bind SelectedValue when placed in a DataTemplate
Any idea when 2.1 will be released? Is there a place to get the latest sources?
View ArticleNew Post: CheckComboBox doesn't bind SelectedValue when placed in a DataTemplate
No dates have been decided for release of v2.1. Sources are available at "https://wpftoolkit.codeplex.com/" in the "SourceCode" tab (or "Downloads" tab).
View ArticleNew Post: CheckComboBox doesn't bind SelectedValue when placed in a DataTemplate
Hmm. I downloaded the sources today and it seems that the fix is not in there (my sample project is still broken). The source code history on the codeplex site show the last checkin was on May 21. Am I...
View ArticleNew Post: CheckComboBox doesn't bind SelectedValue when placed in a DataTemplate
You are right, the fix is not there yet. It will be there when the v2.1 will be released.
View ArticleNew Post: CheckListBox Item ContextMenu & Right-Click
I have a couple of things 0) How do you keep the right mouse button click from changing the selection state of the check box? 1) I have not be able to successfully attach a context menu to the...
View ArticleNew Post: Translation Colorpicker
Actually, u could rewrite ColorPick. set togglebutton Checked and Unchecked event. code like this:public class ColorPickerRewrite : ColorPicker { private ToggleButton _advanced; public override void...
View ArticleNew Post: CheckListBox Item ContextMenu & Right-Click
Right mouse Button doesn't change the selection in the CheckListBox. Only the Left mouse button does. Please have a look at the sample CheckLists from the LiveExplorer app of the toolkit available here...
View ArticleNew Post: CheckListBox Item ContextMenu & Right-Click
I'm using 1.7n, and it does. :) I ended up creating my own simple checklistbox - problem solved. (I guess using SelectorItem wasn't such a good choice for y'all afterall).
View ArticleNew Post: SelectAllOnGotFocus not working when DecimalUpDown control is used...
Take a look at this code snippet inside a WPF :<DataGridTemplateColumn> <DataGridTemplateColumn.CellEditingTemplate> <DataTemplate> <Grid FocusManager.FocusedElement="{Binding...
View ArticleNew Post: Version 2.1
I see at some Issues that they are fixed at V2.1, any Info when it is available? Are any of my fixes from https://wpftoolkit.codeplex.com/discussions/445016 included?
View ArticleNew Post: Version 2.1
And still one more: Again the question: Will it be possible to switch the Project to git, so it's easier to manage own fixes!
View ArticleNew Post: MessageBox ImageSource
I am trying to change the main image (ImageSource) for a MessageBox to show a custom icon. I have the following...Style messageBoxStyle = new Style(typeof(Xceed.Wpf.Toolkit.MessageBox));...
View ArticleNew Post: MessageBox ImageSource
Found the problem; the Uri I was specifying for the bitmap was incorrect. Should have been...messageBoxStyle.Setters.Add(new Setter(Xceed.Wpf.Toolkit.MessageBox.ImageSourceProperty, new BitmapImage(new...
View ArticleNew Post: WPF Toolkit Propertygrid - how to use a property collection
I try to use the great propertygrid from exceed.wpftoolkit but I have to problems based on the application I have to create. First I didn't know at compile time the number of properties the grid has to...
View ArticleNew Post: MessageBox ImageSource
<Style TargetType="{x:Type toolkit:MessageBox}"> <Setter Property="CancelButtonContent" Value="取消" /> <Setter Property="NoButtonContent" Value="否" /> <Setter...
View ArticleNew Post: MessageBox Close Button Problem
MessageBox Close Button Problem Mouseover and MouseLeave Pictures Not Uniform
View ArticleNew Post: MessageBox Close Button Problem
Hi, Can you attach some images of the problem ? When comparing to a regular window (in Windows 8), the Close Button gets brighter on a mouseOver and darker on a mouse leave, just like the Toolkit...
View ArticleNew Post: SelectAllOnGotFocus not working when DecimalUpDown control is used...
Try with something like :<DataGridTemplateColumn> <DataGridTemplateColumn.CellEditingTemplate> <DataTemplate> <Grid> <xctk:DecimalUpDown FocusManager.FocusedElement="{Binding...
View Article