Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
5
votes
2answers
222 views

Jquery - Finding what element $(this) is [closed]

Possible Duplicate: Can jQuery provide the tag name? Hi! This question is so basic i am ashamed asking but i tried to find the answer for 30 minutes without any result. How do i find out ...
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
1answer
28 views

Getting element's name in XPATH

If I selected an element using XPATH how can I get its name? I mean something like text() function in //element/[@id=elid]/text().
2
votes
2answers
970 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 ...
1
vote
2answers
38 views

Binding a DataPager to ComboBox?

I have a comboxbox defined like this (basically): <ComboBox x:Name="pageViewSize"> <ComboBox.Items> <ComboBoxItem IsSelected="True">5</ComboBoxItem> ...
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
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 ...