- 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]
- obj\RotateTransformDemo.csproj.FileList.txt[399B]
- obj\RotateTransformDemo.csproj.FileListAbsolute.txt[1KB]
- obj\Debug\RotateTransformDemo.csproj.FileListAbsolute.txt[2KB]
- Properties\AssemblyInfo.cs[1KB]
- Properties\Resources.Designer.cs[2KB]
- Properties\Resources.resx[5KB]
- Properties\Settings.Designer.cs[1KB]
- from.gif[4KB]
- RotateTransformDemo.sln[927B]
- 最新Asp.Net源码下载.url[123B]
- bin\Debug\RotateTransformDemo.exe[81KB]
- bin\Debug\RotateTransformDemo.pdb[59KB]
- bin\Debug\RotateTransformDemo.vshost.exe[13KB]
- bin\Debug\RotateTransformDemo.vshost.exe.manifest[490B]
- obj\Debug\RotateTransformDemo.csproj.GenerateResource.Cache[905B]
- obj\Debug\RotateTransformDemo.exe[81KB]
- obj\Debug\RotateTransformDemo.Form1.resources[67KB]
- obj\Debug\RotateTransformDemo.Form2.resources[180B]
- obj\Debug\RotateTransformDemo.pdb[59KB]
- obj\Debug\RotateTransformDemo.Properties.Resources.resources[180B]
- obj\Debug\TempPE\Properties.Resources.Designer.cs.dll[4KB]
- Properties\Settings.settings[249B]
源码介绍
源码参数
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();
}
下单记录
用户名 | 源码评分 | 成交价 | 下单时间 | 订单状态 |
---|