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 ...
0
votes
0answers
108 views
Show WPF Popup in DataTemplate created with FrameworkElementFactory
Iam trying drag and drop with gong-wpf-dragdrop project. It work fines but when I try drag and drop between two windows, it doesnt show drag-over information on the second window.
It is because this ...
0
votes
2answers
111 views
How to extract the UI element from data template?
I used the following code to create data template items:
FrameworkElementFactory textCtrl = new FrameworkElementFactory(typeof(TextBox));
Binding binding1 = new Binding();
...
1
vote
0answers
61 views
how can make runtime ListView with binding? wpf
for example I can't get result from this code! please help me, tnx. :)
GridViewColumn gvc6 = new GridViewColumn();
gvc6.DisplayMemberBinding = new Binding("sum");
...
1
vote
1answer
231 views
Get FrameworkElementFactory from FrameworkElement
I have a FrameworkElement, such as StackPanel with children, I need to create a DataTempltate whose VisualTree property is my FrameworkElement. To do this work I need to convert my FrameworkElement in ...
3
votes
1answer
810 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 ...
3
votes
2answers
2k views
Building a DataTemplate in C#
I am trying to build the following DataTemplate in C#
<DataTemplate x:Key="lbl">
<!-- Grid 2x2 with black border -->
<Border BorderBrush="Black">
...
