资源简介
【高级TreeView】自定义高级TreeView控件TreeViewAdv
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
using System.Runtime.InteropServices;
using System.Drawing.Imaging;
namespace Aga.Controls
{
public static class BitmapHelper
{
[StructLayout(LayoutKind.Sequential)]
private struct PixelData
{
public byte B;
public byte G;
public byte R;
public byte A;
}
public static void SetAlphaChanelValue(Bitmap image byte value)
{
if (image == null)
throw new ArgumentNullException(“image“);
if (image.PixelFormat != PixelFormat.Format32bppArgb)
throw new ArgumentException(“Wrong PixelFormat“);
BitmapData bitmapData = image.LockBits(new Rectangle(0 0 image.Width image.Height)
ImageLockMode.ReadWrite PixelFormat.Format32bppArgb)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 11044 2014-06-28 19:27 TreeviewAdv\Aga.Controls\Aga.Controls.csproj
文件 452 2014-06-28 19:11 TreeviewAdv\Aga.Controls\Aga.Controls.csproj.user
文件 167424 2014-08-05 16:58 TreeviewAdv\Aga.Controls\bin\Debug\Aga.Controls.dll
文件 568832 2014-08-05 16:58 TreeviewAdv\Aga.Controls\bin\Debug\Aga.Controls.pdb
文件 1158 2007-04-03 12:51 TreeviewAdv\Aga.Controls\BitmapHelper.cs
文件 19081 2009-06-19 10:09 TreeviewAdv\Aga.Controls\GifDecoder.cs
文件 1100 2014-06-28 19:11 TreeviewAdv\Aga.Controls\Migrated rules for Aga.Controls.ruleset
文件 4757 2009-06-19 10:17 TreeviewAdv\Aga.Controls\NumericTextBox.cs
文件 701 2014-08-04 15:28 TreeviewAdv\Aga.Controls\obj\Debug\Aga.Controls.csproj.FileListAbsolute.txt
文件 1263 2014-08-04 15:28 TreeviewAdv\Aga.Controls\obj\Debug\Aga.Controls.csproj.GenerateResource.Cache
文件 1337 2014-08-04 15:28 TreeviewAdv\Aga.Controls\obj\Debug\Aga.Controls.csprojResolveAssemblyReference.cache
文件 167424 2014-08-05 16:58 TreeviewAdv\Aga.Controls\obj\Debug\Aga.Controls.dll
文件 568832 2014-08-05 16:58 TreeviewAdv\Aga.Controls\obj\Debug\Aga.Controls.pdb
文件 14995 2014-08-04 15:28 TreeviewAdv\Aga.Controls\obj\Debug\Aga.Controls.Properties.Resources.resources
文件 180 2014-08-04 15:28 TreeviewAdv\Aga.Controls\obj\Debug\Aga.Controls.Tree.TreeViewAdv.resources
文件 6941 2014-08-04 15:27 TreeviewAdv\Aga.Controls\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
文件 5632 2014-06-28 19:11 TreeviewAdv\Aga.Controls\obj\Debug\TempPE\Properties.Resources.Designer.cs.dll
文件 3279 2007-11-23 12:16 TreeviewAdv\Aga.Controls\PerformanceAnalyzer.cs
文件 551 2009-06-19 21:10 TreeviewAdv\Aga.Controls\Properties\AssemblyInfo.cs
文件 6506 2014-06-28 19:11 TreeviewAdv\Aga.Controls\Properties\Resources.Designer.cs
文件 8363 2007-05-16 08:58 TreeviewAdv\Aga.Controls\Properties\Resources.resx
文件 1384 2007-05-18 09:52 TreeviewAdv\Aga.Controls\ResourceHelper.cs
文件 574 2007-04-03 12:51 TreeviewAdv\Aga.Controls\Resources\check.bmp
文件 326 2007-04-03 13:03 TreeviewAdv\Aga.Controls\Resources\DVSplit.cur
文件 1334 2007-04-03 12:51 TreeviewAdv\Aga.Controls\Resources\Folder.bmp
文件 822 2007-04-03 12:51 TreeviewAdv\Aga.Controls\Resources\FolderClosed.bmp
文件 1334 2007-04-03 12:51 TreeviewAdv\Aga.Controls\Resources\Leaf.bmp
文件 6979 2007-05-22 09:13 TreeviewAdv\Aga.Controls\Resources\loading_icon
文件 306 2007-04-03 12:51 TreeviewAdv\Aga.Controls\Resources\minus.bmp
文件 306 2007-04-03 12:51 TreeviewAdv\Aga.Controls\Resources\plus.bmp
............此处省略177个文件信息
- 上一篇:C#开发程序自动更新,简单易用
- 下一篇:毛笔字时钟
相关资源
- C#winform打印指定区域 -控件拖动 -设置
- Speex编解码调用
- ztree应用
- 仿苹果Safari 自定义控件(tab切换控件
- Treeview控件用法基础
- Dotween.unitypackage
- ASPxGridView(或ASPxTreeList)动态加载数
- Employee Info Starter Kit
- Html文件上传控件(整理前台使用版)
- WEBBROWER控件使用代理访问指定网页
- 屏蔽Flash控件右键菜单,并使用自己设
- vb 具有预览功能的图像查看器用户控
- 具有预览功能的图像查看器用户控件
- 使用Window 自带的控件 axWindowsMediaPla
- 设置控件的相对布局位置不变
- 重绘ListBox控件
- 使用键盘控制窗体或控件的移动
- C#IEEE754协议 modbus 4位byte转float
- Progressbar进度条控件
- C#遍历指定文件夹(并把数据加载到
- ListView控件间的数据移动
- winform 自定义温度计控件
- 窗体控件随大小变化等比例变化
- 获取一个窗体上EDit中的文字(基于
- DevExpress TreeList 样例
- DemoSwfUpload 比较好用的上传控件
- CreateEntity
- CSharpChart C#的画图控件
- wpf-treeview 自定义漂亮的wpf树控件
- SplashScreen C#程序的启动画面制作方法
评论
共有 条评论