├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── contrib ├── AlphaBlendLabel.ctl └── AlphaBlendTabStrip.ctl ├── src └── AlphaBlendImage.ctl └── test ├── basic ├── Form1.frm ├── Form1.frx ├── Form2.frm ├── Project1.vbp ├── bbb.png └── garden.png └── tabstrip ├── Form1.frm └── Project1.vbp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/AlphaBlendImage/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/AlphaBlendImage/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/AlphaBlendImage/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/AlphaBlendImage/HEAD/README.md -------------------------------------------------------------------------------- /contrib/AlphaBlendLabel.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/AlphaBlendImage/HEAD/contrib/AlphaBlendLabel.ctl -------------------------------------------------------------------------------- /contrib/AlphaBlendTabStrip.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/AlphaBlendImage/HEAD/contrib/AlphaBlendTabStrip.ctl -------------------------------------------------------------------------------- /src/AlphaBlendImage.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/AlphaBlendImage/HEAD/src/AlphaBlendImage.ctl -------------------------------------------------------------------------------- /test/basic/Form1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/AlphaBlendImage/HEAD/test/basic/Form1.frm -------------------------------------------------------------------------------- /test/basic/Form1.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/AlphaBlendImage/HEAD/test/basic/Form1.frx -------------------------------------------------------------------------------- /test/basic/Form2.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/AlphaBlendImage/HEAD/test/basic/Form2.frm -------------------------------------------------------------------------------- /test/basic/Project1.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/AlphaBlendImage/HEAD/test/basic/Project1.vbp -------------------------------------------------------------------------------- /test/basic/bbb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/AlphaBlendImage/HEAD/test/basic/bbb.png -------------------------------------------------------------------------------- /test/basic/garden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/AlphaBlendImage/HEAD/test/basic/garden.png -------------------------------------------------------------------------------- /test/tabstrip/Form1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/AlphaBlendImage/HEAD/test/tabstrip/Form1.frm -------------------------------------------------------------------------------- /test/tabstrip/Project1.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/AlphaBlendImage/HEAD/test/tabstrip/Project1.vbp --------------------------------------------------------------------------------