mirror of
https://github.com/QL-Win/QuickLook.git
synced 2026-03-01 01:00:27 +08:00
13 lines
295 B
C#
13 lines
295 B
C#
using System.Windows.Media;
|
|
|
|
namespace QuickLook
|
|
{
|
|
internal class MainWindowNoTransparent : MainWindowTransparent
|
|
{
|
|
public MainWindowNoTransparent()
|
|
{
|
|
Background = new SolidColorBrush(Colors.White);
|
|
AllowsTransparency = false;
|
|
}
|
|
}
|
|
} |