窗体透明,
将Form的属性Opacity,由默认的100% 调整到 80%(尽量别低于50%),这个数字越小越透明!
打开窗体时出现在屏幕右上角
cs
//构造函数
public frmCalendarList()
{
InitializeComponent();
//打开窗体,窗体出现在屏幕右上角
this.StartPosition = FormStartPosition.Manual;//页面打开方式:默认(不要选CenterScreen之类)
this.Left = Screen.PrimaryScreen.WorkingArea.Width - this.Width;//位置靠右
this.Height = Screen.PrimaryScreen.WorkingArea.Height;//高度撑满屏幕高度
}
具体效果