Tagged Questions
The transparent-control tag has no wiki summary.
10
votes
1answer
953 views
WPF: Ignore mouse clicks on overlay/adorner, but handle MouseEnter event
What I really want is a version of IsHitTestVisible that ignores mouse click events but still traps mouse enter and leave events.
Background:
An informational overlay pops up under the control with ...
9
votes
4answers
5k views
How to create a transparent control which works when on top of other controls?
I have a control (derived from System.Windows.Forms.Control) which needs to be transparent in some areas. I have implemented this by using SetStyle():
public TransparentControl()
{
...
3
votes
1answer
117 views
Transparent group box
I have inherited from TGroupBox of the Delphi native control and overriden its Paint method to draw rounded rectangle.
procedure TclTransparentGroupBox.CreateParams(var params : TCreateParams);
...
1
vote
0answers
73 views
Use winforms control with transparent background in MFC
all.
I'm writting a MFC App that use Winforms user controls in it.
I made a rounded control with c# and placed it on my MFC dialog using MFC-hosting technology.
But the control does not show its ...
1
vote
0answers
68 views
How to implement a transparency or opacity control bar in HTML
I have two maps which are overlayed on each other. Now I want to add opacity control for them . But I don't know how to do that . Kindly suggest. I am overlaying maps in HTMl which is added in ...
1
vote
1answer
1k views
c#: transparent in tabControl
I'm looking for a way to cause a tabControl (framework 2.0) to be transparent in back ground.
I have a custom tabControl that inherite from microsoft tabControl. when I'm trying to paint a ...
0
votes
1answer
68 views
Transparency problem with gradient - Label in a Panel on a UserControl, ultimately displayed on parent Form
I know this has been asked many times, but not quite the way I'm trying to solve it.
I have Labels in a Panel on a UserControl, and the UserControl goes onto a form.
The Label.BackColor = ...
0
votes
0answers
86 views
0% form opacity without affecting controls (items) in C#
How can I do 0% form opacity without affecting controls (items)?
I found Changing form opactity without changing opacity of contained controls, but there is no answer. What is the answer?
0
votes
1answer
461 views
VB.net trasparent control problem
Public Class HighlightKey
Inherits Control
Private m_fillColor As Color = Color.White
Private m_opacity As Integer = 100
Private alpha As Integer
Private m_image As Image
...