Supports the creation of templates.
0
votes
0answers
20 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
107 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
1answer
133 views
Setting up Binding to template child
I derived from the System.Windows.Controls.ScrollViewer and changed the Template; my idea was to create a ScrollViewer as seen in Visual Studio 2010, which has a small ComboBox to set the zoom into ...
0
votes
2answers
106 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");
...
0
votes
0answers
104 views
own Button-class with Image in FrameworkElementFactory not working WPF
i'm currently working on an Virtual Keyboard. Everything works fine and now i want to paint an Image on a Button ( WPF ). On a normal Button it works, but my button is special ... the Enter button ..
...
1
vote
1answer
230 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 ...
2
votes
1answer
337 views
getvalue from FrameworkElementFactory
Am having a list view with one GridViewColumn
GridViewColumn gvc = new GridViewColumn();
DataTemplate dt = new DataTemplate();
FrameworkElementFactory ch = new ...
0
votes
0answers
232 views
Expander header text is showing as “System.Windows.FrameworkElementFactory” in Combobox
I am doing following to add expander to my combobox -
GroupStyle groupStyle = new GroupStyle();
Style style = new Style(typeof(GroupItem));
ControlTemplate ...
3
votes
1answer
804 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> : ...
1
vote
1answer
686 views
WPF FrameworkElementFactory Image creation Not able to AddHandler for MouseDownEvent
I am using Framework ElementFactory for creating a image in DataTemplate. While trying to handle the MouseDown Event for the Image type, an exception is thrown - "Handler Type is not valid.
How can ...
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
895 views
Uri Binding for Image in FrameworkElementFactory
I am creating a DataTemplate in code and cannot use XAML. :(
I have managed to create an image inside the Template, but only if I hardcode the path to the ico file. I would love to be able to bind ...
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 ...
0
votes
2answers
992 views
Converting ControlTemplate XAML to C#
I have been stumped with trying to convert the following code into pure c#. This XAML code is from Cavanaghs blog on how to make rounded corners on anything. The code works but I need to convert it ...
0
votes
1answer
2k views
Setting ControlTemplate in code [WPF]
How can I set Grid object with some UI elements in ControlTemplate? I try use this code, but I don't understand how to set Grid object to FrameworkElementFactory object. Thanks
ControlTemplate ...
6
votes
4answers
9k views
Create a grid in WPF as Template programmatically
I want to create a basic user control with a style programmatically.
In this style i want to add a Grid (no problem), but i dont can add column definitions to this grid.
My example code is
...
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">
...
3
votes
1answer
362 views
Get Binding from a FrameworkElementFactory
In a GirdView the text of some columns sould be aligned to the right.
To do that I create a DataTemplate, which contains a TextBlock.
Binding bd = new Binding("path");
FrameworkElementFactory ...
0
votes
1answer
277 views
FrameworkElementFactory “ignores” parent resources (e.g. styles)
I am trying to create some custom treeviews. Everything is working fine so far, but I got a little problem with styles. I have a simple "RedBackground" Style which I add to the resources of the ...
1
vote
0answers
340 views
How to clone an FrameworkElementFactory object and its links?
I would like to ask you some help in creating a code the is able to clone a FrameworkElementFactory object created at runtime with the code.
Dim cellTemplateFactory As New ...
2
votes
0answers
3k views
Binding FrameworkElementFactory to data object property
I have a ListBox whose DataTemplate is created in code using 3 FrameworkElementFactory objects(A StackPanel with 2 appended children(CheckBox and TextBox)). The item object in the collection that is ...

