New Post: Color Picker Bind Selected Color To Ink Canvas
Hi, Have you tried removing the "colorPicker" in the "Path", having something like :<InkCanvas Name="Canvas" DefaultDrawingAttributes="{Binding ElementName=colorPicker, Path=SelectedColor}">...
View ArticleNew Post: Datapicker change button background
Hi, Are you talking about the ColorPicker ? Which button's background are you trying to modify ?
View ArticleNew Post: How to change background of title bar for ChildWindow?
Hi, You can use the Property WindowBackground to change the background of the title bar.
View ArticleNew Post: How to change background of title bar for ChildWindow?
Thank you. This is what I need.
View ArticleNew Post: PropertyGrid: no useful default editor for List
When using the property grid with an object containing a property of type "List<enum>", the associated editor for this property is the CollectionEditor. However, this makes little sense, as...
View ArticleNew Post: "ButtonChrome" not included in namespace...
Hi there! Working on a WPF-project and I am editing the styles, currently for a DropDownButton. I pasted all the code from here:...
View ArticleNew Post: ChildWindow - How to pass a value from a childwindow to a main form
Hi, I do have a simple form where a user enters a value in a childwinow modal then when the childwindow modal is closed, I want to get the value entered by the user and populate it in the main...
View ArticleNew Post: ChildWindow - How to pass a value from a childwindow to a main form
Hi, You can use a binding to update the Text value :<TextBox x:Name="txtResult" Text="{Binding Text, ElementName=txtUserInput}" BorderThickness="1" BorderBrush="Black" Height="20" Margin="10" />...
View ArticleNew Post: "ButtonChrome" not included in namespace...
Hi, Try modifying the linexmlns:chrome="clr-namespace:Xceed.Wpf.Toolkit.Chromes" toxmlns:chrome="clr-namespace:Xceed.Wpf.Toolkit.Chromes;assembly=Xceed.Wpf.Toolkit"
View ArticleNew Post: DropDownButton in ListView loses focus
Hi all, I am displaying items in ListView (that uses GridView). In one of the GridViewColumn I placed DropDownButton (which will allow setting some parameters). For testing purpose I placed xceed...
View ArticleNew Post: DropDownButton in ListView loses focus
Hi, Maybe it' something to do with the GridView or the ListView. Try handling the event on a mouseDown in the content of the DropDownButton. In this case, in the ColorCanvas : protected override void...
View ArticleNew Post: ChildWindow - How to pass a value from a childwindow to a main form
Thank you. It really simple than I thought!
View ArticleNew Post: PropertyGrid
I am getting the same error when specifying the TargetProperties property in a PropertyDefinition - like you apart from the blue squiggles and the error message (Cannot modify TargetProperties once the...
View ArticleNew Post: PropertyGrid
I finally realized that learning to deal with such issues was taking me too far off of the original goal of creating the app. So I abandoned the PropertyGrid idea and moved on. I don't like having to...
View ArticleNew Post: PropertyGrid
@MarkFl I understand your frustration - but I guess this is the community edition and I appreciate the work Xceed have done here. Having said that yesterday I downloaded the trial version of the latest...
View ArticleNew Post: "ButtonChrome" not included in namespace...
Thanks, that's it! :-) Another question, there are 2 things left I'm struggling with. The Arrow of the DDB has always a left alignment, also if I align it to the right, it stays directly at the...
View ArticleNew Post: Show only popup of DateTimePicker
Hello, I'm a newbie in WPF and WPF Toolkit. In my case, the user will open the DateTimePicker via clicking a Button to show the popup (Calender and TimePicker). I have to remove the textbox and...
View ArticleNew Post: Show only popup of DateTimePicker
Hi, You could use a DropDownButton with a DropDownContent containing the Calendars and TimePicker :<Grid> <xctk:DropDownButton x:Name="_dropDownButton" Margin="10" Width="150" Height="25"...
View Article