Is there some attribute in WPF that I can add to element, so when I click it the target control get focus? The closest thing I have found is \'Target\', but it works only w
override the Label control
public class LabelEx : Label { public LabelEx() : base() {} protected override void OnMouseDown(System.Windows.Input.MouseButtonEventArgs e) { if (Target != null) Target.Focus(); base.OnMouseDown(e); } }