19 lines
408 B
C#
19 lines
408 B
C#
using WindowsShortcutFactory;
|
|
|
|
namespace TheXamlGuy.TaskbarGroup.Core
|
|
{
|
|
public class CreateShortcutHandler : IMessageHandler<CreateShortcut>
|
|
{
|
|
public void Handle(CreateShortcut message)
|
|
{
|
|
using var shortcut = new WindowsShortcut
|
|
{
|
|
Path = message.Path,
|
|
};
|
|
|
|
shortcut.Save(@"C:\temp\MyShortcut.lnk");
|
|
}
|
|
|
|
}
|
|
}
|