Files
TheXamlGuy.TaskbarGroup/TheXamlGuy.TaskbarGroup/Windows/CreateTaskbarButtonGroupWindow.cs
T
dan_clark@outlook.com 40d8caf1e0 Set up IHostEnvironment
2022-03-27 15:44:43 +01:00

19 lines
471 B
C#

using System.Windows;
using System.Windows.Media;
namespace TheXamlGuy.TaskbarGroup
{
public class CreateTaskbarButtonGroupWindow : Window
{
public CreateTaskbarButtonGroupWindow()
{
Height = 0;
Width = 0;
WindowStyle = WindowStyle.None;
ResizeMode = ResizeMode.NoResize;
AllowsTransparency = true;
Background = new SolidColorBrush(Colors.Transparent);
}
}
}