Tagged Questions
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
332 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"
...
1
vote
0answers
122 views
Silverlight binding errors in the output window
I know that if there's an issue with the Path attribute in my binding expression, I'll get a binding error message in my output window, but is there anyway to debug a ElementName attribute issue?
I ...
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
266 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 ...