Hi everybody, first of all, thanks for taking the time to read my question. I'm new in the WPF world and I'm trying to build my first application. My problem is that the event MouseLeftButtonDown wont launch in a canvas that I have inside a Tabitem (which is inside a TabPanel), this is very basic, but I can't get it to work. From a menu I create a tab item :
TabItem tab = new TabItem();
tab.Header = string.Format("Tab {0}", count);
tab.Name = string.Format("tab{0}", count);
tab.HeaderTemplate = tabDynamic.FindResource("TabHeader") as DataTemplate;
Then I add a canvas to my new tabitem:
Canvas canvas = new Canvas();
canvas.Name = "NuevoCanvas";
canvas.MouseLeftButtonDown += new MouseButtonEventHandler(canvas1_MouseLeftButtonDown);// -->it seems this doesnt work?
tab.Content = canvas;
But when I do Left click on the Canvas inside the tab item, nothing happens. This is the method:
private void canvas1_MouseLeftButtonDown(object sender, MouseButtonEventArgs e){
MessageBox.Show("show something");
}
That's my problem, Thank you again, i hope you can help me.