Can we create a custom notification popup for Microsoft Teams's application - customization

Can we have a custom notification popup for Microsoft Teams's application; similar to below but with customized buttons.

If you want to get a pop up in team chat window you can use Task module deeplink. If you want to get a popup in a meeting then you can use Content Bubble.

Related

Is there any button click event in Sitecore Tracker in version 9.1

I am looking for a personalization event that have to occur when a click event takes place.
No, there is not and you have to track your button click event on the server side in Sitecore.
Add an onclick() JavaScript event to your button to make the server call and pass details about the clicked button. Then register the click event as a Goal on the server side.
You can create a Goal and then trigger it as a pre-built Sitecore event using
the Sitecore.Analytics.Tracker.Current.CurrentPage.RegisterGoal() method to register your Goal against the current page as follows:
var goalId = "{Your Goal ID}"; // ID of your goal
var goalDefinition = Sitecore.Analytics.Tracker.MarketingDefinitions.Goals[goalId];
Sitecore.Analytics.Tracker.Current.CurrentPage.RegisterGoal(goalDefinition);
Read more about the pre-built events in Sitecore here.

Launching an UI or an application when a system tray notification is clicked

I have created a system tray icon notification. I need to launch an application when the notification is clicked. How can I do that using C++? I have read about the IUserNotification2 interface from MSDN documents, but I'm not sure how to implement them. It would be so helpful if someone can share an example code for a click event.

Custom button/menu button on quick create form in CRM 2013

Is it possible put extra button to quick create form in CRM 2013?
I have std ribbon button in std form to acquire info about company from internet. I want similar button in quic create form.
There is no ribbon support in Quick Create forms. I would therefore add a button to the Quick Create form using an HTML web resource which performs the same action (JavaScript?) as that on the existing ribbon button you've already created.
If this feature must be available on both forms I would for UI consistency use the same web resource approach on the Quick Create and Main forms rather than one button in the ribbon and one on the form as a web resource.

Create Icon in notification area

Is there a possibility to create ICON in notification area in C++ other that using System.Windows.Forms::NotifyIcon class.
I would like to enable a Service to display the Icon.
Thanks
Moti

winapi - Hooking an app's taskbar tab events

I'm having trouble hooking event messages sent when a user left/right clicks on the app's tackbar tab. I have tried implementing OnNcLButtonDown and the like but no events are ever triggered when I click on the app's tab. Is there a possible COM solutions?
There is an undocumented windows message: code 0x0313 that is send when a user right clicks on the app's taskbar button. Dunno whether its stable to hook though.