Bill
Bill

Reputation: 3033

Windows 8 Message Window

Windows 8 has a new message window that displays in the top right side of the screen. Does Delphi XE4 have any API to access this new feature?

Upvotes: 0

Views: 675

Answers (2)

RRUZ
RRUZ

Reputation: 136401

This kind of dialog is part of the Windows.UI.Notifications namespace which belongs to the WinRT, and unfortunately you cannot access the WinRT from Delphi directly. but maybe you can try this article to check a sample with experimental access to the WinRT from Delphi, Writing Hello World for WinRT in Delphi

Upvotes: 2

Lloyd
Lloyd

Reputation: 29668

This is Notifications or Toasts, you can find a C++ and C# example here - http://code.msdn.microsoft.com/windowsdesktop/Sending-toast-notifications-71e230a2

I've yet to see a direct Delphi implementation of this which is why I can only suggest the C++/C# version.

Upvotes: 1

Related Questions