我想从后面的代码中获取关联的标签:
例如:
<Label Name="fooLabel" Target={x:Reference fooTextBox} />
<TextBox Name="fooTextBox" />
伪代码(代码背后):
if (object.Equals(fooTextBox.AssociatedLabel, fooLabel) == true)
{
//yeah...
}
(我知道我可以反过来做,fooLabel.Target
会给我TextBox
但我没有标签,我think there should be a better way
比搜索Visual Tree
1}}用于所有标签并检查其respective Target
)