Tagged Questions
0
votes
0answers
21 views
DataTemplateColumn with Color Picker FrameworkElementFactory bind converter?
I have a datagrid which i populate dynamically. Weill in one of the columns I want to have a colorpicker from the extended wpf toolkit.
Also I want whenever the user changes color from the color ...
3
votes
1answer
806 views
Purpose of using FrameworkElementFactory
In one of the application I am working I have found this code -
public class MatrixCellTemplate : ColumnDataTemplate<MatrixCellContainer>
{
}
public class ColumnDataTemplate<T> : ...
0
votes
1answer
1k views
FrameworkElementFactory must be in a sealed template for this operation
I wrote a snippet to create a own DataTemplate by c# code. And i add it to datagrid column's editing template.
When i called object templateContent = tc.CellTemplate.LoadContent ( );, the application ...
0
votes
1answer
937 views
WPF binding (dataGrid) OneWayToSource, UpdateSourceTrigger-Explicit - undesired source update
I have a problem with an undesired source update in the OneWayToSource, UpdateSourceTrigger.Explicit scenario
Background:
I have a DataGrid containing user data with a password column.
I have derived ...