- 51Aspx源码必读.txt[2KB]
- Form1.cs[1KB]
- Form1.Designer.cs[4KB]
- Form1.resx[106KB]
- Form2.cs[3KB]
- Form2.Designer.cs[1KB]
- Form2.resx[5KB]
- Program.cs[881B]
- RotateTransformDemo.csproj[3KB]
- Win32.cs[2KB]
- from.gif[4KB]
- RotateTransformDemo.sln[927B]
- 最新Asp.Net源码下载.url[123B]
源码介绍
源码参数
Alpha半透明窗体源码
功能介绍:
利用Alpha实现半透明效果。
主要代码:
private void button1_Click(object sender, EventArgs e)
{
if (frm == null) frm = new Form2();
Bitmap bitmap = new Bitmap(image.Width * 2, image.Height * 2);
Graphics g = Graphics.FromImage(bitmap);
float width = pictureBox1.ClientSize.Width;
float height = pictureBox1.ClientSize.Height;
g.TranslateTransform(width / 2f, height / 2f);
g.RotateTransform(angle);
g.DrawImage(image, -image.Width / 2f, -image.Height / 2f, image.Width, image.Height);
frm.SetBits(bitmap);
frm.Show();
}
下单记录
用户名 | 源码评分 | 成交价 | 下单时间 | 订单状态 |
---|