码迷,mamicode.com
首页 > Windows程序 > 详细

用SetLayeredWindowAttributes设置winform界面透明化

时间:2021-06-02 13:16:08      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:RKE   red   port   text   partial   opacity   nbsp   draw   mes   

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace opacity
{
    public partial class Form1 : Form
    {
    
        [System.Runtime.InteropServices.DllImport("user32", EntryPoint = "SetLayeredWindowAttributes")]
        private static extern int SetLayeredWindowAttributes(IntPtr hwnd, int crKey, int bAlpha, int dwFlags);
     public Form1()
        {
            InitializeComponent();
            this.BackColor = Color.FromArgb(255, 255, 255);
this.Opacity = 0.5;
SetLayeredWindowAttributes(Handle, 0xffffff, 0, 1); } } }

 

用SetLayeredWindowAttributes设置winform界面透明化

标签:RKE   red   port   text   partial   opacity   nbsp   draw   mes   

原文地址:https://www.cnblogs.com/aoyinblog/p/14818846.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!