Click here to Skip to main content
15,884,353 members
Articles / Desktop Programming / Windows Forms

Crash While Closing Application that Uses Windows Ribbon Framework

Rate me:
Please Sign up or sign in to vote.
5.00/5 (2 votes)
22 Apr 2010Ms-PL 14K   6  
Crash while closing application that uses Windows Ribbon Framework

Since that’s the third time I’ve been asked about it, and in fact came across the problem myself, I thought I should blog my reply to help future users.

Problem Description

You use the Windows Ribbon Framework, either directly (in C++) or in managed code using my Windows Ribbon for WinForms library. You add a close button to the ribbon which closes the application. The application crashes on close.

Don’t Cut the Branch You Sit On

The problem is that you try to call ribbon.DestroyFramework, which ultimately calls IUIFramework.Destroy from a ribbon command handler. So while handling the ribbon event, you try to kill the ribbon. It is only fair that the ribbon control fights back.

Solution

Either invoke the Close() method asynchronously:

C#
void _exitButton_OnExecute(
    PropertyKeyRef key, 
    PropVariantRef currentValue, 
    IUISimplePropertySet commandExecutionProperties)
{
    // Close form asynchronously since we are in a ribbon event 
    // handler, so the ribbon is still in use, and calling Close 
    // will eventually call _ribbon.DestroyFramework(), which is 
    // a big no-no, if you still use the ribbon.
    this.BeginInvoke(new MethodInvoker(this.Close));
}

or don’t call DestroyFramework when closing the application (and trust windows for releasing the resources).

[By the way, the C++ solution is simply to call PostMessage(WM_CLOSE) instead of SendMessage(WM_CLOSE)].

I’ve updated sample 04-TabGroupHelp on the project site so that it has a real exit button on the ribbon that closes the form.

That’s it for now,
Arik Poznanski

License

This article, along with any associated source code and files, is licensed under The Microsoft Public License (Ms-PL)


Written By
Software Developer (Senior) Verint
Israel Israel
Arik Poznanski is a senior software developer at Verint. He completed two B.Sc. degrees in Mathematics & Computer Science, summa cum laude, from the Technion in Israel.

Arik has extensive knowledge and experience in many Microsoft technologies, including .NET with C#, WPF, Silverlight, WinForms, Interop, COM/ATL programming, C++ Win32 programming and reverse engineering (assembly, IL).

Comments and Discussions

 
-- There are no messages in this forum --