Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Mugwump

Pages: 1
1
MusicBee API / Re: MusicBee API
« on: October 29, 2020, 07:28:01 PM »
I've called
Code
MB_SetBackgroundTaskMessage
from inside my task callback thread but I cannot see where this is supposed to be shown on the taskbar?

With the background tasks is it possible to set the taskbar progress indicator using the MB API?

2
MusicBee API / Re: Add context menu items?
« on: October 25, 2020, 11:17:39 AM »
Figured it out from "Additional Tagging & Reporting Tools Plugin" source.

So I'll post it in case it is useful for anyone else trying to do the same in future.

Code
ToolStripMenuItem mainMenuItem = (ToolStripMenuItem)_mbApiInterface.MB_AddMenuItem($"context.Main/{PluginName}", null, null);
mainMenuItem.DropDown.Items.Add("Zip", null, MenuClicked);

3
MusicBee API / Re: Add context menu items?
« on: October 16, 2020, 06:57:42 PM »
This is the menu I would like to extend with my plugin. Is this possible?


4
MusicBee API / Add context menu items?
« on: October 14, 2020, 08:30:25 PM »
Hi,

Is it possible to add more items to the right click context menu?
For instance I can add items under the tools menu like this

mbApiInterface.MB_AddMenuItem("mnuTools/Custom", "Custom thing", MenuClicked);

Guessing there is some way of using this to do what I want?

5
MusicBee API / Re: MusicBee API
« on: June 05, 2019, 11:29:01 AM »
Hi,

I noticed there is a release candidate for musicbee 3.3 which is compatible with dotnet framework 4.6.1. This version of dotnet framework is compatible with netstandard 2.0 assemblies (https://docs.microsoft.com/en-us/dotnet/standard/net-standard). Will music bee be able to work with plugins that are compiled as netstandard 2.0 class libraries?

Pages: 1