I have a TextBox in my Form that I want to let it be tranparent and show a picture that is in a PictureBox, behind it, but how I can do this? Thanks.
Making a TextBox Transparent
24.4k Views Asked by Nathan Campos At
1
There are 1 best solutions below
Related Questions in C#
- Passing arguments to main in C using Eclipse
- kernel module does not print packet info
- error C2016 (C requires that a struct or union has at least one member) and structs typedefs
- Drawing with ncurses, sockets and fork
- How to catch delay-import dll errors (missing dll or symbol) in MinGW(-w64)?
- Configured TTL for A record(s) backing CNAME records
- Allocating memory for pointers inside structures in functions
- Finding articulation point of undirected graph by DFS
- C first fgets() is being skipped while the second runs
- C std library don't appear to be linked in object file
- gcc static library compilation
- How to do a case-insensitive string comparison?
- C programming: Create and write 2D array of files as function
- How to read a file then store to array and then print?
- Function timeouts in C and thread
Related Questions in TEXTBOX
- All my JavaFX TextFields have lines in them
- Troubleshooting code for macro and textbox
- WPF text control with colors only
- WPF how to manage ENTER hit on TextBox for messaging purpose
- Split comma separated strings 5
- How to fetch data from text field without using any buttons?
- How can I create a WPF TextBox that conditionally converts user input?
- Implementing Autocomplete textbox in ASP.NET
- Output Command Line (.Bat FILE) show in textbox with c#
- Disable a MenuItem when TextBox of UserControl is empty
- PreviewlostkeyboardFocus event fires twice when I click on combobox WPF
- Turning Textbox Red with a timer when serial port stops outputting data
- How can I sum value in 8 textboxes to the a single textbox?
- How can i restrict user from entering the numeric and special characters in textbox?
- Can I run a Sub based on whether another Sub has run?
Related Questions in TRANSPARENCY
- How can I add a transparent tkinter image in Python 3.3.2?
- Transparent RichTextBox with Graphic not showing Text
- How to remove UINavigationBar transparency in iOS8?
- Fluid login form with different transparency of background holder
- Set mesh transparency Meshlab
- Android OpenGL Transparent Texture Draws Black
- Is it possible to have a element transparent and see through his parent opaque background
- In CSS3, using `transparency` with `gradient` doesn't work?
- OpenLayers3: best way to display multiple WMS layers in trasparency
- Windows Form Application - Transparent PictureBox Image overwrites Form Transparency
- WS_EX_TOOLWINDOW with TransparencyKey causes Win32Exception
- ImageMagick: How to make both black and white transparent?
- Clear Transparent Background for QWidget
- How can I apply a fade-out-text effect with a transparent-to-white gradient?
- Trouble with Transparent Background in scene created with Three.js Editor
Related Questions in PICTUREBOX
- showing a black transparent box over picturebox with an Image
- How to hide control when click outside it?
- c# move picturebox from an array of picturebox up when you hover mouse
- VB.NET Fading out button properly
- Switching images in picturebox
- Move windows form from a picturebox in C#
- How to zoom into a picturebox image without changing the image sharpness?
- More Fluent Image Movement
- Winforms Cursor
- Update picturebox
- C# PictureBox variable in a class
- How to get position from Image in PictureBox
- BackGammon Game
- Class With PictureBox Variable and Double. And more
- picture box crossed out C#
Related Questions in WINDOWS-MOBILE-5.0
- Checking possibility of Wifi connectivity with Windows Mobile Pocket PC
- Does the Honeywell D6X00 WinCE5.0 SDK work with Visual Studio 2010?
- Toolbox controls not active in VS2008
- How to stop Treeview nodes appearing differently between WM5 & WM6.5
- Online xml file cannot be opened on Pocket PC - WM 5.0 emulator browser
- Event navigation keys window CE?
- Does Visual Studio 2005/08/10 replace Embedded Visual C++ 4.0?
- windows ce application opening and closing
- Monitoring Network traffic in Windows Mobile 6.5 using C#?
- CAB installation failing on new Windows Mobile 6.5 devices
- Can I Sync Pocket Access on Windows 7?
- Change language in mobile application
- In Which Languages Can I Develop For Windows Mobile?
- It's Possible To Run Windows Mobile 5 SDK In Visual Studio 2008?
- String Array And a String Parameter
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Not too complex, after some searching on StackOverflow, I found this answer.
Basically, you need to subclass
TextBoxand in its constructor add the appropriate style.Final stpe, set its
BackColorto Transparent. Hope it helps.