Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
445
Selected group click event
posted

Hello, I can attach to SelectedGroupChanged event of xamOutlookBar. But I need a click event for the SelectedGroup of xamOutlookBar. When I click the SelectedGroup this event should be fire. Can I do that or do you have some other workarounds?

ControlOutlookBar.SelectedGroupChanged += ControlOutlookBar_SelectedGroupChanged;

private void ControlOutlookBar_SelectedGroupChanged(object sender, RoutedEventArgs e)

{

... this is ok.

}

ControlOutlookBar.SelectedGroupClick ??? ---I need this

note: ControlOutlookBar.SelectedGroup.MouseDown and ControlOutlookBar.SelectedGroup.PreviewMouseDown and ControlOutlookBar.SelectedGroup.GotFocus do not fire.