i try to raise the TabItemClosingEvent of the Controls:MetroTabControl.
XAML:
<Controls:MetroTabControl cal:Message.Attach="[Event TabItemClosingEvent] = [Action CloseConnection($source, $eventArgs)];" DockPanel.Dock="Top" Background="{x:Null}" ItemsSource="{Binding Connections.View}" SelectedItem="{Binding SelectedConnection}" Margin="10,0">
Code:
public void CloseConnection(object sender, BaseMetroTabControl.TabItemClosingEventArgs e)
{
e.Cancel = false;
}
CloseConnection is never called. Somebody can see my fault?
Thank you
I wasn't able to make MahApps work with Caliburn's short syntax either.
However, the long syntax works for me: