project
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
using Microsoft.Toolkit.Win32.UI.XamlHost;
|
||||
using Windows.ApplicationModel.Activation;
|
||||
using Windows.UI.Xaml;
|
||||
|
||||
namespace TheXamlGuy.TaskbarGroup.Flyout
|
||||
{
|
||||
public sealed partial class App : XamlApplication
|
||||
{
|
||||
public App()
|
||||
{
|
||||
Initialize();
|
||||
}
|
||||
|
||||
protected override void OnLaunched(LaunchActivatedEventArgs args)
|
||||
{
|
||||
(Window.Current as object as IWindowPrivate).TransparentBackground = true;
|
||||
base.OnLaunched(args);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user