DCSIMG
Crash while closing application that uses Windows Ribbon Framework - Arik Poznanski's Blog

Arik Poznanski's Blog

It CAN be done with .NET

News

MVP

MCC

CodeProject MVP

MCPD

MCTS

Subscribe to my blog by email

Arik Poznanski LinkedIn Profile

Email: arik.com at gmail dot com
or, use this form

Locations of visitors to this page


Sela Group

Sela Canada

DZone MVB

Links

Official Blogs

WPF / SL Blogs

Developers Blogs

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 crash 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:

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.

kick it on DotNetKicks.com Shout it
Posted: Apr 14 2010, 12:28 AM by arik | with 4 comment(s) |
תגים:, , ,

Comments

No Comments