Tagged Questions
15
votes
5answers
7k views
ElementName Binding from MenuItem in ContextMenu
Has anybody else noticed that Bindings with ElementName do not resolve correctly for MenuItem objects that are contained within ContextMenu objects? Check out this sample:
<Window ...
10
votes
3answers
4k views
Differences between ElementName=“<Me>” and RelativeSource self?
What are the differences between making a binding self-referential via name versus self-referential via RelativeSource?
For example:
<!-- Self referential via name -->
<Window ...
...
8
votes
2answers
4k views
Binding ElementName. Does it use Visual Tree or Logical Tree
Having {Binding ElementName=foo}, will it lookup visual or logical tree?
http://blogs.msdn.com/mikehillberg/archive/2008/05/23/Of-logical-and-visual-trees-in-WPF.aspx
When does the logical tree ...
4
votes
2answers
329 views
ElementName vs. RelativeResource?
What of the following TextBlocks' Bindings costs more performance:
<Window
x:Name="Me"
x:Class="MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
...
2
votes
2answers
968 views
Cannot find source for binding with reference
I want to bind my MultiDataTrigger.Conditions to radio button, but it's not working. here is my scenario.
In wpf, I have a GridPanel, which suppose to have radiobuttons in it.
I generate dynamic ...
0
votes
2answers
64 views
Changing another control's property in some control's Trigger with “dynamic” name
I am trying to change my labels style dynamically on my forms.
The behaviour I want is: Every time a textbox called 'txtName', for instance, gets Focused, it should search for a Label Control named ...
0
votes
2answers
155 views
Connecting width/height of cell in two different controls?
I need to create two controls that contain the same amound of items (a dynamic amount), the first control represents the keys, the second represents the values.
I need it so that when the user ...
0
votes
2answers
263 views
Bind the Height of the Listbox inside the StackPanel to StackPanel`s height
I want to bind the Height of the ListBox to the Height of the StackPanel so the ListBox stretches itself Vertically so the green area is not visible anymore.
When there is no item in the listbox its ...
0
votes
1answer
506 views
Binding ElementName
Hello
First Sorry for my English.
I wanted to ask why ElementName does not work the first case, and work in the second.
I give the two sections of code . the firts not work
<Button ...
-1
votes
1answer
104 views
WPF: How to bind to a element when it is inside a DataGrid template column?
I can not bind the EditingCommand to the elementname Bla , how can I fix that?
<StackPanel Orientation="Vertical">
<ToggleButton Content="bold" IsChecked="{Binding ...