首页上一页 1 下一页尾页 1 条记录 1/1页
关于《C#程序开发范例宝典》中特殊形状的窗体
发表在C#图书答疑
2012-10-16
是否精华
是
否
版块置顶:
是
否
《C#程序开发范例宝典》第25页中的特殊形状的窗体:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Drawing.Drawing2D;
namespace Ex01_22
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
bit = new Bitmap("888.bmp");
bit.MakeTransparent(Color.White);
}
protected override void OnPaint(PaintEventArgs e)
{
e.Graphics.DrawImage((Image)bit, new Point(0, 0));
}
}
}
报错:当前上下文中不存在名称"Bit".(由于第一章的源代码丢失,第二章以后的代码都有,所以我只能按照书本的代码写下来)
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Drawing.Drawing2D;
namespace Ex01_22
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
bit = new Bitmap("888.bmp");
bit.MakeTransparent(Color.White);
}
protected override void OnPaint(PaintEventArgs e)
{
e.Graphics.DrawImage((Image)bit, new Point(0, 0));
}
}
}
报错:当前上下文中不存在名称"Bit".(由于第一章的源代码丢失,第二章以后的代码都有,所以我只能按照书本的代码写下来)