New Post: Possible Regular Expression Pattern to set specific data template...
Issue https://wpftoolkit.codeplex.com/workitem/21031 has been created.
View ArticleNew Post: MessageBox Error on .Show()
I'm attempting to use the Xceed Toolkit MessageBox. When Show is called, I get a XamlParseException. The message is that "DependencyProperty.UnsetValue is not a valid value for property 'BorderBrush'....
View ArticleNew Post: MessageBox Error on .Show()
Hi, Do you have a sample or code snippet to test this bug ? Thanks
View ArticleNew Post: XCeed DataGrid for WPF Binding
Hi, If you want to see the DataCell.SelectionBackground and DataCell.SelectionForeground, you have to set the DataGridControl.SelectionUnit to "Cell". By default it's set to "Row" and so the...
View ArticleNew Post: XCeed DataGrid for WPF Binding
I can set it as part of the style, but I'm unable to access those properties from my DataTemplate.
View ArticleNew Post: Maskedtextbox define culture for mask
I'm trying to make sure that my decimal point in a mask is always displayed as a dot and ignore the system's region. As is my understanding this can be set using the FormatProvider Property of the...
View ArticleNew Post: Maskedtextbox define culture for mask
I managed to bind a FormatProvider like this: Create a class called MyCultureInfo that exposes a static CultureInfo MyCulture which always returns a new CultureInfo("en-GB"): Then I use Binding Source...
View ArticleNew Post: PropertyGrid: Custom Items Source and ReadOnly Attribute
Hello, I have a property with a custom Items Source that is set using the ItemsSource attribute. It also has the ReadOnly(true) attribute. However, when displayed in the PropertyGrid, the Item Source...
View ArticleNew Post: Maskedtextbox define culture for mask
In reply to my posts, I have figured out that the responsible methods for create the culture of MaskedTextBox, are two methods found in ValueRangeTextBox.cs. In particular:internal IFormatProvider...
View ArticleNew Post: PropertyGrid: Custom Items Source and ReadOnly Attribute
Issue https://wpftoolkit.codeplex.com/workitem/21038 has been created.
View ArticleNew Post: Setting MessageBox TextOptions.TextFormattingMode and...
Hi, I'd like to know how I could possibly set TextOptions.TextFormattingMode and RenderOptions.ClearTypeHint properties on this toolkit MessageBox, preferably by overriding its default style. Thanks.
View ArticleNew Post: PropertyGrid: Create New Object?
I have a workaround for now until v2.4 is released. In the Xaml, I define the Data Template as a resource with a key:<DataTemplate x:Key="NewValueTemplate"> <Grid>...
View ArticleNew Post: Setting TargetProperties on a PropertyGrid EditorTemplateDefinition
I posted a workaround in this related discussion: https://www.codeplex.com/wpftoolkit/discussions/545551
View ArticleNew Post: How to use SelectedItems override
<xctk:CheckComboBox ItemsSource="{Binding DataItem.DependentBatches, Mode=TwoWay}" DisplayMemberPath="BatchName" ValueMemberPath="IndexOrchestratedBatchId" SelectedItemsOverride="{Binding...
View ArticleNew Post: CheckListBox not showing data
I've created a User Control with a CheckListBox and when the Control is displayed, there is no data visible. I have verified that the CheckListBox items have the contents that were added, but the...
View ArticleNew Post: IntegerUpDown (v1.7) - IsEditable?
Hi, another option that works for me, declare the event "PreviewTextInput" in the control style, and set handle = true in the event handler method:<Style TargetType="{x:Type Extended:IntegerUpDown}"...
View ArticleNew Post: How to use SelectedItems override
Hi, Can you use an ObservableCollection instead of a List ? Or a DP to see the list change in a callback ? I've made a sample inspire from yours. I use a DP to be notified when the Collection is...
View ArticleNew Post: CheckListBox not showing data
Hi, Please modify your variable "IsSelected" and "TheText" to become Properties. Here's your sample, slightly modified, in C# public partial class MainWindow : Window { private static...
View ArticleNew Post: PropertyGrid Collection Editor - Editor Template Definitions
Hello, I have some custom Editor Template Definitions defined for my PropertyGrid (as discussed here https://wpftoolkit.codeplex.com/discussions/545551). These are working well. However, the Collection...
View Article