In WPF app inside a TabControl there is TabItem element with one Label. I want fire event on MouseClick on the Tab of this TabControl, but the event "MouseLeftButtonDown":
<TabItem Header="Header1" MouseLeftButtonDown="TabItem_MouseLeftButtonDown" >
<Label Height="28" Name="AdderLbl" Width="120" Background="Azure" >Label</Label>
</TabItem>
fires only on click over the label. It is not wat I want.
How I could fire event on MouseClick over the Tab, not its content?