Tagged Questions
0
votes
1answer
152 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 ...
1
vote
0answers
66 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
729 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
954 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 ...
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
369 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 ...
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 ...
