• 大小: 0.04M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2020-12-26
  • 语言: C#
  • 标签: winform  自绘  

资源简介

此实例用的不是背景图片,是程序自绘的图 展示出很个性的窗体

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using Microsoft.Win32;
using System.Drawing.Drawing2D;

namespace BootStrapBeatitude
{
    public partial class Frm_Main : Form
    {
        public Frm_Main()
        {
            InitializeComponent();
        }

        private void Frm_Main_Load(object sender EventArgs e)
        {
            GraphicsPath gp = new GraphicsPath();  //初始化一个表示一系列相互连接的直线和曲线的类
            Rectangle rect = new Rectangle(new Point(0 0) new Size(this.Width this.Height));  //初始化一个矩形操作区域
            gp.AddEllipse(rect);  //向当前指定的路径下添加一个椭圆
            this.Region = new Region(gp);  //设置与此控件关联的窗口区域
            this.la

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2011-12-22 23:04  BootStrapBeatitude\
     文件         944  2013-04-23 22:28  BootStrapBeatitude.sln
     文件       24576  2010-11-04 19:13  BootStrapBeatitude.suo
     文件       24576  2010-11-04 19:13  BootStrapBeatitude.v11.suo
     目录           0  2011-12-22 23:04  BootStrapBeatitude\bin\
     目录           0  2013-04-23 22:28  BootStrapBeatitude\bin\Debug\
     文件       10752  2013-04-23 22:28  BootStrapBeatitude\bin\Debug\BootStrapBeatitude.exe
     文件       24064  2013-04-23 22:28  BootStrapBeatitude\bin\Debug\BootStrapBeatitude.pdb
     文件        4040  2013-04-23 22:28  BootStrapBeatitude\BootStrapBeatitude.csproj
     文件        2331  2010-07-12 21:56  BootStrapBeatitude\Frm_Main.cs
     文件        6232  2010-07-09 19:20  BootStrapBeatitude\Frm_Main.designer.cs
     文件        5814  2010-07-09 19:20  BootStrapBeatitude\Frm_Main.resx
     目录           0  2011-12-22 23:04  BootStrapBeatitude\obj\
     目录           0  2013-04-23 22:29  BootStrapBeatitude\obj\Debug\
     文件        4156  2013-04-23 22:28  BootStrapBeatitude\obj\Debug\BootStrapBeatitude.csproj.FileListAbsolute.txt
     文件         850  2013-04-23 22:28  BootStrapBeatitude\obj\Debug\BootStrapBeatitude.csproj.GenerateResource.Cache
     文件        1757  2013-04-23 22:28  BootStrapBeatitude\obj\Debug\BootStrapBeatitude.csprojResolveAssemblyReference.cache
     文件       10752  2013-04-23 22:28  BootStrapBeatitude\obj\Debug\BootStrapBeatitude.exe
     文件         180  2013-04-23 22:28  BootStrapBeatitude\obj\Debug\BootStrapBeatitude.Frm_Main.resources
     文件       24064  2013-04-23 22:28  BootStrapBeatitude\obj\Debug\BootStrapBeatitude.pdb
     文件         180  2013-04-23 22:28  BootStrapBeatitude\obj\Debug\BootStrapBeatitude.Properties.Resources.resources
     文件         789  2013-04-23 22:29  BootStrapBeatitude\obj\Debug\DesignTimeResolveAssemblyReferences.cache
     文件        7200  2013-04-23 22:28  BootStrapBeatitude\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
     目录           0  2011-12-22 23:04  BootStrapBeatitude\obj\Debug\Refactor\
     目录           0  2013-04-23 22:29  BootStrapBeatitude\obj\Debug\TempPE\
     文件        4608  2013-04-23 22:29  BootStrapBeatitude\obj\Debug\TempPE\Properties.Resources.Designer.cs.dll
     文件         502  2010-07-09 19:19  BootStrapBeatitude\Program.cs
     目录           0  2011-12-22 23:04  BootStrapBeatitude\Properties\
     文件        1368  2009-02-23 21:13  BootStrapBeatitude\Properties\AssemblyInfo.cs
     文件        2876  2013-04-23 22:28  BootStrapBeatitude\Properties\Resources.Designer.cs
     文件        5612  2009-02-23 21:13  BootStrapBeatitude\Properties\Resources.resx
............此处省略2个文件信息

评论

共有 条评论