mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
44 lines
1.1 KiB
C#
44 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows;
|
|
using System.Windows.Controls;
|
|
using System.Windows.Data;
|
|
using System.Windows.Documents;
|
|
using System.Windows.Input;
|
|
using System.Windows.Media;
|
|
using System.Windows.Media.Imaging;
|
|
using System.Windows.Navigation;
|
|
using System.Windows.Shapes;
|
|
|
|
namespace VideoLinkDownloader
|
|
{
|
|
public partial class MainWindow
|
|
{
|
|
public MainWindow()
|
|
{
|
|
InitializeComponent();
|
|
//button.Click += (s,e) =>
|
|
//{
|
|
// AcrylicBlur.Apply(this, new Color
|
|
// {
|
|
// A = 0,
|
|
// R = 255,
|
|
// G = 255,
|
|
// B = 255,
|
|
// }, AccentState.Diabled);
|
|
// AcrylicBlur.Apply(this, new Color
|
|
// {
|
|
// A = 0,
|
|
// R = 255,
|
|
// G = 255,
|
|
// B = 255,
|
|
// }, AccentState.AcrylicBlurBehind);
|
|
//};
|
|
}
|
|
}
|
|
}
|