| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- //############################################################
- // https://github.com/yuzhengyang
- // author:yuzhengyang
- //############################################################
- using System;
- using System.ComponentModel;
- using System.Threading;
- using System.Threading.Tasks;
- using System.Windows.Forms;
- namespace Y.Skin.YoForm.Irregular
- {
- public partial class IrregularForm : Form
- {
- private IrregularFormSkin Skin;
- public IrregularForm()
- {
- InitializeComponent();
- //SetStyles();//减少闪烁
- ShowInTaskbar = false;//禁止控件层显示到任务栏
- FormBorderStyle = FormBorderStyle.None;//设置无边框的窗口样式
- TransparencyKey = BackColor;//使控件层背景透明
- }
- private void IrregularForm_Load(object sender, EventArgs e)
- {
- if (!DesignMode)
- {
- Opacity = 0;
- Skin = new IrregularFormSkin(this);//创建皮肤层
- BackgroundImage = null;//去除控件层背景
- Skin.Show();//显示皮肤层
- AnimateShow();
- }
- }
- #region 属性
- private bool _skinmobile = true;
- [Category("Skin")]
- [Description("窗体是否可以移动")]
- [DefaultValue(typeof(bool), "true")]
- public bool SkinMovable
- {
- get { return _skinmobile; }
- set
- {
- if (_skinmobile != value)
- {
- _skinmobile = value;
- }
- }
- }
- #endregion
- #region 减少闪烁
- private void SetStyles()
- {
- SetStyle(
- ControlStyles.UserPaint |
- ControlStyles.AllPaintingInWmPaint |
- ControlStyles.OptimizedDoubleBuffer |
- ControlStyles.ResizeRedraw |
- ControlStyles.DoubleBuffer, true);
- //强制分配样式重新应用到控件上
- UpdateStyles();
- base.AutoScaleMode = AutoScaleMode.None;
- }
- #endregion
- private void AnimateShow()
- {
- Task.Factory.StartNew(() =>
- {
- for (int i = 0; i <= 10; i++)
- {
- BeginInvoke(new Action(() =>
- {
- Opacity = i / 10.0;
- Skin.SetBits();
- }));
- Thread.Sleep(25);
- }
- });
- }
- }
- }
|