广告位联系
返回顶部
分享到

WPF实现窗体亚克力效果的代码

C#教程 来源:互联网 作者:佚名 发布时间:2022-10-05 20:46:50 人浏览
摘要

WPF 窗体设置亚克力效果 框架使用大于等于.NET40。 Visual Studio 2022。 项目使用MIT开源许可协议。 WindowAcrylicBlur设置亚克力颜色。 Opacity设置透明度。 实现代码 1) 准备WindowAcrylicBlur.cs如下

WPF 窗体设置亚克力效果

框架使用大于等于.NET40。

Visual Studio 2022。

项目使用 MIT 开源许可协议。

WindowAcrylicBlur 设置亚克力颜色。

Opacity 设置透明度。

实现代码

1) 准备WindowAcrylicBlur.cs如下:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

162

163

164

165

166

167

168

169

170

171

172

173

174

175

176

177

178

179

180

181

182

183

184

185

186

187

188

189

190

191

192

193

194

195

196

197

198

199

200

201

202

203

204

205

206

207

208

209

210

211

212

213

214

215

216

217

218

219

220

221

222

223

224

225

226

227

228

229

230

231

232

233

234

235

236

237

238

239

240

241

242

243

244

245

246

247

248

249

250

251

252

253

254

255

256

257

258

259

260

261

262

263

264

265

266

267

268

269

270

271

272

273

274

275

276

277

278

279

280

281

282

283

284

285

286

287

288

289

290

291

292

293

294

295

296

297

298

299

300

301

302

303

304

305

306

307

308

309

310

311

312

313

314

315

316

317

318

319

320

321

322

323

324

325

326

327

328

329

330

using System;

using System.Runtime.InteropServices;

using System.Windows;

using System.Windows.Interop;

using System.Windows.Media;

using Microsoft.Win32;

using Microsoft.Windows.Shell;

 

namespace WPFDevelopers.Controls

{

    internal enum AccentState

    {

        ACCENT_DISABLED = 0,

        ACCENT_ENABLE_GRADIENT = 1,

        ACCENT_ENABLE_TRANSPARENTGRADIENT = 2,

        ACCENT_ENABLE_BLURBEHIND = 3,

        ACCENT_ENABLE_ACRYLICBLURBEHIND = 4,

        ACCENT_INVALID_STATE = 5

    }

 

    [StructLayout(LayoutKind.Sequential)]

    internal struct AccentPolicy

    {

        public AccentState AccentState;

        public uint AccentFlags;

        public uint GradientColor;

        public uint AnimationId;

    }

 

    [StructLayout(LayoutKind.Sequential)]

    internal struct WindowCompositionAttributeData

    {

        public WindowCompositionAttribute Attribute;

        public IntPtr Data;

        public int SizeOfData;

    }

 

    internal enum WindowCompositionAttribute

    {

        // ...

        WCA_ACCENT_POLICY = 19

        // ...

    }

 

    internal class WindowOldConfig

    {

        public bool AllowsTransparency;

        public Brush Background;

        public WindowChrome WindowChrome;

        public WindowStyle WindowStyle = WindowStyle.SingleBorderWindow;

    }

 

 

    internal class WindowOSHelper

    {

        public static Version GetWindowOSVersion()

        {

            var regKey = Registry.LocalMachine.OpenSubKey(@"Software\Microsoft\Windows NT\CurrentVersion");

 

            int major;

            int minor;

            int build;

            int revision;

            try

            {

                var str = regKey.GetValue("CurrentMajorVersionNumber")?.ToString();

                int.TryParse(str, out major);

 

                str = regKey.GetValue("CurrentMinorVersionNumber")?.ToString();

                int.TryParse(str, out minor);

 

                str = regKey.GetValue("CurrentBuildNumber")?.ToString();

                int.TryParse(str, out build);

 

                str = regKey.GetValue("BaseBuildRevisionNumber")?.ToString();

                int.TryParse(str, out revision);

 

                return new Version(major, minor, build, revision);

            }

            catch (Exception)

            {

                return new Version(0, 0, 0, 0);

            }

            finally

            {

                regKey.Close();

            }

        }

    }

 

 

    public class WindowAcrylicBlur : Freezable

    {

        private static readonly Color _BackgtoundColor = Color.FromArgb(0x01, 0, 0, 0); //设置透明色 防止穿透

 

        [DllImport("user32.dll")]

        internal static extern int SetWindowCompositionAttribute(IntPtr hwnd, ref WindowCompositionAttributeData data);

 

        private static bool EnableAcrylicBlur(Window window, Color color, double opacity, bool enable)

        {

            if (window == null)

                return false;

 

            AccentState accentState;

            var vOsVersion = WindowOSHelper.GetWindowOSVersion();

            if (vOsVersion > new Version(10, 0, 17763)) //1809

                accentState = enable ? AccentState.ACCENT_ENABLE_ACRYLICBLURBEHIND : AccentState.ACCENT_DISABLED;

            else if (vOsVersion > new Version(10, 0))

                accentState = enable ? AccentState.ACCENT_ENABLE_BLURBEHIND : AccentState.ACCENT_DISABLED;

            else

                accentState = AccentState.ACCENT_DISABLED;

 

            if (opacity > 1)

                opacity = 1;

 

            var windowHelper = new WindowInteropHelper(window);

 

            var accent = new AccentPolicy();

 

            var opacityIn = (uint) (255 * opacity);

 

            accent.AccentState = accentState;

 

            if (enable)

            {

                var blurColor = (uint) ((color.R << 0) | (color.G << 8) | (color.B << 16) | (color.A << 24));

                var blurColorIn = blurColor;

                if (opacityIn > 0)

                    blurColorIn = (opacityIn << 24) | (blurColor & 0xFFFFFF);

                else if (opacityIn == 0 && color.A == 0)

                    blurColorIn = (0x01 << 24) | (blurColor & 0xFFFFFF);

 

                if (accent.GradientColor == blurColorIn)

                    return true;

 

                accent.GradientColor = blurColorIn;

            }

 

            var accentStructSize = Marshal.SizeOf(accent);

 

            var accentPtr = Marshal.AllocHGlobal(accentStructSize);

            Marshal.StructureToPtr(accent, accentPtr, false);

 

            var data = new WindowCompositionAttributeData();

            data.Attribute = WindowCompositionAttribute.WCA_ACCENT_POLICY;

            data.SizeOfData = accentStructSize;

            data.Data = accentPtr;

 

            SetWindowCompositionAttribute(windowHelper.Handle, ref data);

 

            Marshal.FreeHGlobal(accentPtr);

 

            return true;

        }

 

        private static void Window_Initialized(object sender, EventArgs e)

        {

            if (!(sender is Window window))

                return;

 

            var config = new WindowOldConfig

            {

                WindowStyle = window.WindowStyle,

                AllowsTransparency = window.AllowsTransparency,

                Background = window.Background

            };

 

            var vWindowChrome = WindowChrome.GetWindowChrome(window);

            if (vWindowChrome == null)

            {

                window.WindowStyle = WindowStyle.None; //一定要将窗口的背景色改为透明才行

                window.AllowsTransparency = true; //一定要将窗口的背景色改为透明才行

                window.Background = new SolidColorBrush(_BackgtoundColor); //一定要将窗口的背景色改为透明才行

            }

            else

            {

                config.WindowChrome = new WindowChrome

                {

                    GlassFrameThickness = vWindowChrome.GlassFrameThickness

                };

                window.Background = Brushes.Transparent; //一定要将窗口的背景色改为透明才行

                var vGlassFrameThickness = vWindowChrome.GlassFrameThickness;

                vWindowChrome.GlassFrameThickness = new Thickness(0, vGlassFrameThickness.Top, 0, 0);

            }

 

            SetWindowOldConfig(window, config);

 

            window.Initialized -= Window_Initialized;

        }

 

        private static void Window_Loaded(object sender, RoutedEventArgs e)

        {

            if (!(sender is Window window))

                return;

 

            var vBlur = GetWindowAcrylicBlur(window);

            if (vBlur != null)

                EnableAcrylicBlur(window, vBlur.BlurColor, vBlur.Opacity, true);

 

            window.Loaded -= Window_Loaded;

        }

 

 

        protected override Freezable CreateInstanceCore()

        {

            throw new NotImplementedException();

        }

 

        protected override void OnChanged()

        {

            base.OnChanged();

        }

 

        protected override void OnPropertyChanged(DependencyPropertyChangedEventArgs e)

        {

            base.OnPropertyChanged(e);

        }

 

        #region 开启Win11风格

 

        public static WindowAcrylicBlur GetWindowAcrylicBlur(DependencyObject obj)

        {

            return (WindowAcrylicBlur) obj.GetValue(WindowAcrylicBlurProperty);

        }

 

        public static void SetWindowAcrylicBlur(DependencyObject obj, WindowAcrylicBlur value)

        {

            obj.SetValue(WindowAcrylicBlurProperty, value);

        }

 

        public static readonly DependencyProperty WindowAcrylicBlurProperty =

            DependencyProperty.RegisterAttached("WindowAcrylicBlur", typeof(WindowAcrylicBlur),

                typeof(WindowAcrylicBlur),

                new PropertyMetadata(default(WindowAcrylicBlur), OnWindowAcryBlurPropertyChangedCallBack));

 

        private static void OnWindowAcryBlurPropertyChangedCallBack(DependencyObject d,

            DependencyPropertyChangedEventArgs e)

        {

            if (!(d is Window window))

                return;

 

            if (e.OldValue == null && e.NewValue == null)

                return;

 

            if (e.OldValue == null && e.NewValue != null)

            {

                window.Initialized += Window_Initialized;

                window.Loaded += Window_Loaded;

            }

 

            if (e.OldValue != null && e.NewValue == null)

            {

                var vConfig = GetWindowOldConfig(d);

                if (vConfig != null)

                {

                    window.WindowStyle = vConfig.WindowStyle;

                    window.AllowsTransparency = vConfig.AllowsTransparency;

                    window.Background = vConfig.Background;

 

                    if (vConfig.WindowChrome != null)

                    {

                        var vWindowChrome = WindowChrome.GetWindowChrome(window);

                        if (vWindowChrome != null)

                            vWindowChrome.GlassFrameThickness = vConfig.WindowChrome.GlassFrameThickness;

                    }

                }

            }

 

            if (e.OldValue == e.NewValue)

            {

                if (!window.IsLoaded)

                    return;

 

                var vBlur = e.NewValue as WindowAcrylicBlur;

                if (vBlur == null)

                    return;

 

                EnableAcrylicBlur(window, vBlur.BlurColor, vBlur.Opacity, true);

            }

        }

 

        #endregion

 

 

        #region 内部设置

 

        private static WindowOldConfig GetWindowOldConfig(DependencyObject obj)

        {

            return (WindowOldConfig) obj.GetValue(WindowOldConfigProperty);

        }

 

        private static void SetWindowOldConfig(DependencyObject obj, WindowOldConfig value)

        {

            obj.SetValue(WindowOldConfigProperty, value);

        }

 

        // Using a DependencyProperty as the backing store for WindowOldConfig.  This enables animation, styling, binding, etc...

        private static readonly DependencyProperty WindowOldConfigProperty =

            DependencyProperty.RegisterAttached("WindowOldConfig", typeof(WindowOldConfig), typeof(WindowAcrylicBlur),

                new PropertyMetadata(default(WindowOldConfig)));

 

        #endregion

 

        #region

 

        public Color BlurColor

        {

            get => (Color) GetValue(BlurColorProperty);

            set => SetValue(BlurColorProperty, value);

        }

 

        // Using a DependencyProperty as the backing store for BlurColor.  This enables animation, styling, binding, etc...

        public static readonly DependencyProperty BlurColorProperty =

            DependencyProperty.Register("BlurColor", typeof(Color), typeof(WindowAcrylicBlur),

                new PropertyMetadata(default(Color)));

 

        public double Opacity

        {

            get => (double) GetValue(OpacityProperty);

            set => SetValue(OpacityProperty, value);

        }

 

        // Using a DependencyProperty as the backing store for Opacity.  This enables animation, styling, binding, etc...

        public static readonly DependencyProperty OpacityProperty =

            DependencyProperty.Register("Opacity", typeof(double), typeof(WindowAcrylicBlur),

                new PropertyMetadata(default(double)));

 

        #endregion

    }

}

2) 使用AcrylicBlurWindowExample.xaml如下:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

<Window x:Class="WPFDevelopers.Samples.ExampleViews.AcrylicBlurWindowExample"

        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"

        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"

        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"

        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"

        xmlns:local="clr-namespace:WPFDevelopers.Samples.ExampleViews"

        xmlns:wpfdev="https://github.com/WPFDevelopersOrg/WPFDevelopers"

        mc:Ignorable="d" WindowStartupLocation="CenterScreen"

        ResizeMode="CanMinimize"

        Title="Login" Height="350" Width="400">

    <wpfdev:WindowChrome.WindowChrome>

        <wpfdev:WindowChrome  GlassFrameThickness="0 1 0 0"/>

    </wpfdev:WindowChrome.WindowChrome>

    <wpfdev:WindowAcrylicBlur.WindowAcrylicBlur>

        <wpfdev:WindowAcrylicBlur BlurColor="AliceBlue" Opacity="0.2"/>

    </wpfdev:WindowAcrylicBlur.WindowAcrylicBlur>

    <Grid>

        <Grid.RowDefinitions>

            <RowDefinition Height="40"/>

            <RowDefinition/>

        </Grid.RowDefinitions>

        <StackPanel HorizontalAlignment="Right" 

                        Orientation="Horizontal"

                        Grid.Column="1"

                        wpfdev:WindowChrome.IsHitTestVisibleInChrome="True">

            <Button Style="{DynamicResource WindowButtonStyle}"

                    Command="{Binding CloseCommand,RelativeSource={RelativeSource AncestorType=local:AcrylicBlurWindowExample}}" Cursor="Hand">

                <Path Width="10" Height="10"

                      HorizontalAlignment="Center"

                      VerticalAlignment="Center"

                      Data="{DynamicResource PathMetroWindowClose}"

                      Fill="Red"

                      Stretch="Fill" />

            </Button>

        </StackPanel>

        <StackPanel Grid.Row="1" Margin="40,0,40,0"

                    wpfdev:WindowChrome.IsHitTestVisibleInChrome="True">

            <Image Source="/WPFDevelopers.ico" Width="80" Height="80"/>

            <TextBox wpfdev:ElementHelper.IsWatermark="True" wpfdev:ElementHelper.Watermark="账户" Margin="0,20,0,0" Cursor="Hand"/>

            <PasswordBox wpfdev:ElementHelper.IsWatermark="True" wpfdev:ElementHelper.Watermark="密码"  Margin="0,20,0,0" Cursor="Hand"/>

            <Button x:Name="LoginButton" 

                    Content="登 录" 

                    Margin="0,20,0,0"

                    Style="{StaticResource PrimaryButton}"/>

            <Grid Margin="0 20 0 0">

                <TextBlock FontSize="12">

                    <Hyperlink Foreground="Black" TextDecorations="None">忘记密码</Hyperlink>

                </TextBlock>

                <TextBlock FontSize="12" HorizontalAlignment="Right" Margin="0 0 -1 0">

                    <Hyperlink Foreground="#4370F5" TextDecorations="None">注册账号</Hyperlink>

                </TextBlock>

            </Grid>

        </StackPanel>

 

    </Grid>

</Window>

3) 使用AcrylicBlurWindowExample.xaml.cs如下:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

using System.Windows;

using System.Windows.Input;

using WPFDevelopers.Samples.Helpers;

 

namespace WPFDevelopers.Samples.ExampleViews

{

    /// <summary>

    /// AcrylicBlurWindowExample.xaml 的交互逻辑

    /// </summary>

    public partial class AcrylicBlurWindowExample : Window

    {

        public AcrylicBlurWindowExample()

        {

            InitializeComponent();

        }

        public ICommand CloseCommand => new RelayCommand(obj =>

        {

           Close();

        });

    }

}

实现效果


版权声明 : 本文内容来源于互联网或用户自行发布贡献,该文观点仅代表原作者本人。本站仅提供信息存储空间服务和不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权, 违法违规的内容, 请发送邮件至2530232025#qq.cn(#换@)举报,一经查实,本站将立刻删除。

您可能感兴趣的文章 :

原文链接 : https://mp.weixin.qq.com/s/xFoqJqds249l0LotgDtsLg
相关文章
  • C#实现图片轮播功能的代码
    实践过程 效果 代码 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 5
  • WPF实现窗体亚克力效果的代码

    WPF实现窗体亚克力效果的代码
    WPF 窗体设置亚克力效果 框架使用大于等于.NET40。 Visual Studio 2022。 项目使用MIT开源许可协议。 WindowAcrylicBlur设置亚克力颜色。 Opacity设置透
  • C#非托管泄漏中HEAP_ENTRY的Size对不上解析

    C#非托管泄漏中HEAP_ENTRY的Size对不上解析
    一:背景 1. 讲故事 前段时间有位朋友在分析他的非托管泄漏时,发现NT堆的_HEAP_ENTRY的 Size 和!heap命令中的 Size 对不上,来咨询是怎么回事?
  • C#中ArrayList 类的使用介绍
    一:ArrayList 类简单说明 动态数组ArrayList类在System.Collecions的命名空间下,所以使用时要加入System.Collecions命名空间,而且ArrayList提供添加,
  • C#使用BinaryFormatter类、ISerializable接口、XmlSeriali

    C#使用BinaryFormatter类、ISerializable接口、XmlSeriali
    序列化是将对象转换成字节流的过程,反序列化是把字节流转换成对象的过程。对象一旦被序列化,就可以把对象状态保存到硬盘的某个位
  • C#序列化与反序列化集合对象并进行版本控制
    当涉及到跨进程甚至是跨域传输数据的时候,我们需要把对象序列化和反序列化。 首先可以使用Serializable特性。 1 2 3 4 5 6 7 8 9 10 11 12 13 14
  • C#事件中关于sender的用法解读

    C#事件中关于sender的用法解读
    C#事件sender的小用法 开WPF新坑了,看了WPF的炫酷界面,再看看winForm实在是有些惨不忍睹(逃)。后面会开始写一些短的学习笔记。 一、什么
  • 在C#程序中注入恶意DLL的方法

    在C#程序中注入恶意DLL的方法
    一、背景 前段时间在训练营上课的时候就有朋友提到一个问题,为什么 Windbg 附加到 C# 程序后,程序就处于中断状态了?它到底是如何实现
  • 基于C#实现一个简单的FTP操作工具
    实现功能 实现使用FTP上传、下载、重命名、刷新、删除功能 开发环境 开发工具: Visual Studio 2013 .NET Framework版本:4.5 实现代码 1 2 3 4 5 6 7
  • C#仿QQ实现简单的截图功能

    C#仿QQ实现简单的截图功能
    接上一篇写的截取电脑屏幕,我们在原来的基础上加一个选择区域的功能,实现自定义选择截图。 个人比较懒,上一篇的代码就不重新设计
  • 本站所有内容来源于互联网或用户自行发布,本站仅提供信息存储空间服务,不拥有版权,不承担法律责任。如有侵犯您的权益,请您联系站长处理!
  • Copyright © 2017-2022 F11.CN All Rights Reserved. F11站长开发者网 版权所有 | 苏ICP备2022031554号-1 | 51LA统计