如题,邮箱[email protected],谢谢帮助我的所有人!

解决方案 »

  1.   

    给你一个等边直角三角形的窗口
            protected override void OnLoad(EventArgs e)
            {
                base.OnLoad(e);            this.FormBorderStyle = FormBorderStyle.None;            GraphicsPath path = new GraphicsPath();
                path.StartFigure();
                path.AddLines(new Point[] { new Point(100, 0), new Point(0, 100), new Point(100, 100) });
                path.CloseFigure();            this.Region = new Region(path);
            }