Click here to Skip to main content
6,305,776 members and growing! (15,195 online)
Email Password   helpLost your password?
Desktop Development » Edit Controls » General     Intermediate License: The Code Project Open License (CPOL)

AlphaBlendTextBox - A transparent/translucent textbox for .NET

By Bob Bradley

A transparent/translucent textbox for .NET
C#, VB.NET 1.1, Win2K, WinXP, Win2003VS.NET2003, Dev
Posted:23 Jun 2003
Views:190,406
Bookmarked:89 times
Announcements
Loading...
 
Search    
Advanced Search
printPrint   Broken Article?Report       add Share
  Discuss Discuss   Recommend Article Email
38 votes for this article.
Popularity: 7.07 Rating: 4.48 out of 5
2 votes, 5.3%
1

2

3
4 votes, 10.5%
4
32 votes, 84.2%
5

Sample Image - AlphaBlendTextBox1.gif

Introduction

While working on another multi-media program, I found myself in need of a transparent edit control (TextBox) for .NET. I soon discovered that if there is one out there, then it must be so transparent that I just can't find it. In my searches, I did find that there is an AlphaBlend filter available for web buttons hosted by IE, but I could find none for Win Forms. So I set out to write one.

I present here version 1.0 of AlphaBlendTextBox written in C#. Be warned that it is not fully tested, not fully optimized and is not yet in use in any production system. However, I wanted to submit it here, hoping that some of you will find the control and it's source code useful.

A big note: I have used Visual Studio .NET 2003 and .NET framework 1.1 to create this control and the sample projects. I will repost a VS2002 .NET 1.0 version as soon as I can.

Background

While designing this control, I decided that the best method would be to subclass the existing TextBox control, so that the new control could be used anywhere that the original TextBox control could. A quick discovery was that the TextBox control is a real pain to subclass. Several programmers out there have noted that it can be an all-or-nothing process.

This is because in the current versions of .NET, the TextBox control is just a wrapper for the old Win32 control. This makes it difficult to modify. If you override the OnPaint method for the control, it is ignored unless you change the control's style to UserPaint. However, doing this keeps the control from drawing itself at all, until the user selects some text, and even then painting is erratic.

Back to my original problem. I wanted a TextBox control that was transparent to the background. While looking through the help files, I noticed that the .NET controls have a new style called SupportsTransparentBackColor that would seem to do the trick. However, this style requires that the UserPaint style be set, and as noted above this keeps the TextBox control from drawing itself. Worse yet, when the TextBox did paint, it still had a solid background.

After several weeks of frustration, I came up with this solution: subclass the TextBox control and add a PictureBox to the control that gets displayed, instead of the original TextBox.

When the control needs to be painted, it does the following:

  • temporarily sets the UserPaint style to false
  • captures a bitmap of the original TextBox by sending a WM_PRINT message
  • switches back to UserPaint style
  • uses a ColorMap to convert the solid background into a transparent/alpha background
  • figures out where the caret should be and draws it if necessary
  • then copies the new alpha image to the PictureBox, which when drawn will be blended with the background

In addition, the PictureBox had to be overridden so that any mouse event sent to it would be redirected to the TextBox. Also, several public properties and methods of the TextBox had to be overridden, such as Font, MultiLine, etc.

Using the code

This control can be used in the same manner as the standard TextBox control. I have compiled the control as a control library (DLL) file. To use this control from the Visual Studio designer, simply right click on the tool bar and choose "Add/Remove Items" and then click "Browse" and browse to the AlphaBlendTextBox.dll file. After doing this, the AlphaBlendTextBox control should appear in your tool bar (under "My User Controls" if you have VS2003). Now you can drag the control to a form and use it just like the original TextBox control. The control has a new property named BackAlpha that will allow you to set the control's background alphablend value. The range is 0 for transparent, 255 for opaque, or in between for translucent.

Properties snap shot

Another way to use the control is to add it to your project, using the "Project:Add Reference" menu. The control is under the ZBobb namespace so you can then use code like below:

// Sample C# code

private ZBobb.AlphaBlendTextBox alphaBlendTextBox1; 
private void Form1_Load(object sender, System.EventArgs e)
{
    alphaBlendTextBox1 = new ZBobb.AlphaBlendTextBox();
    alphaBlendTextBox1.Location = new System.Drawing.Point(32, 16);
    this.alphaBlendTextBox1.Text = "Hello";
    alphaBlendTextBox1.BackAlpha = 0; // Totally transparent

    this.Controls.Add(this.alphaBlendTextBox1);
 }

The control can also be used in Visual Basic .NET and I have included a sample VB project.

Conclusion

This is my first posting to the Code Project. The Code Project has been a great source of help to me in my programming and I am glad to finally be able to give something back. I look forward to hearing your comments and suggestions, and I hope that this posting can be useful to you.

History

  • Version 1.0 released June 24, 2003.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Bob Bradley


Member
Bob Bradley is a full time Computer Science instructor at the University of Tennessee at Martin. He has been preoccupied with computers since his first Commodore Vic-20. He is currently interested in XNA/XBox-360 programming!
Occupation: Web Developer
Location: United States United States

Other popular Edit Controls articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 25 of 57 (Total in Forum: 57) (Refresh)FirstPrevNext
GeneralThanks. Pinmemberjoeyprest18:59 1 Mar '09  
GeneralLicense PinmemberLexx22:34 12 Dec '08  
GeneralRe: License PinmemberBob Bradley7:30 15 Dec '08  
AnswerRe: License PinmemberLexx26:55 16 Dec '08  
QuestionEvent Pinmemberbrajoh4:31 25 Sep '08  
Questionbegg PinmemberIsakku10:02 27 Aug '08  
Generalwhy that works? Pinmemberdennis.zeng2:26 25 Aug '08  
GeneralCool stuff Thx PinmemberMember 15485436:16 10 Aug '08  
GeneralIf I use RichTextBox, then I need to modify what part so that the control can work. Pinmemberxuezt5:19 10 Jun '08  
QuestionAlphablendTextBox Pinmemberanant121:32 24 Mar '08  
GeneralProblem with Forecolor Pinmemberjeff_v22:54 27 Feb '08  
GeneralNice Work PinmemberJamesParsons10:25 29 Jan '08  
GeneralEASY Option Pinmemberdeanpugh4:02 18 Jan '07  
JokeRe: EASY Option Pinmembertitwan23:40 6 Jun '07  
GeneralRe: EASY Option Pinmemberxxjnxx20:48 29 Oct '07  
GeneralWORKS GREAT THANKS PinmemberStephen_Lahti16:50 11 Jan '07  
Generalcursor in RTL PinmemberMohammad Hammad5:56 17 Dec '06  
GeneralSomething similar for Compact Framework PinmemberBennne5:01 24 Nov '06  
QuestionHELP!!!!!!!!!!!!!!!!!!!!!!!!! PinmemberItsMe!!!18:58 13 Nov '06  
GeneralPicture behind PinmemberItsMe!!!18:30 13 Nov '06  
QuestionProblem with Update of the Control PinmemberFreewareFire12:34 19 Sep '06  
GeneralIt dosen't work when forecolor and backcolor is the same. Pinmembero_intania8119:29 17 Apr '06  
Generalnot working! PinmemberAssaf Koren23:33 20 Feb '06  
GeneralRe: not working! PinmemberAaron Dilliard9:53 21 Feb '06  
QuestionProblem with double click event PinmemberRavi KP18:31 22 Dec '05  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 23 Jun 2003
Editor: Smitha Vijayan
Copyright 2003 by Bob Bradley
Everything else Copyright © CodeProject, 1999-2009
Web16 | Advertise on the Code Project