Autor
|
Tema: Form semi-transparente en el q se vean los controles??? (Leído 12,338 veces)
|
~~
|
Pues eso basicamente, si alguien sabe como hacer un form semi-transparente, pero q se vean los controles q tiene dentro sin transparentar. Buscando por google e encontrado muxo code q lo hace del todo transparente y uno q lo hace semi-transparente, pero no se ven los botones Alguien lo sabe??? 1S4ludo
|
|
|
En línea
|
|
|
|
|
~~
|
No, yo no estoy buscando exactamente eso, tu code lo hace imbisible del todo y ademas funciona un poco mal... Seria algo asi pero con los botones visibles: Private mAlpha As Long
' Declaraciones para Layered Windows (sólo Windows 2000 y superior) Private Const WS_EX_LAYERED As Long = &H80000 Private Const LWA_ALPHA As Long = &H2 ' Private Declare Function SetLayeredWindowAttributes Lib "user32" _ (ByVal hWnd As Long, ByVal crKey As Long, _ ByVal bAlpha As Long, ByVal dwFlags As Long) As Long
'------------------------------------------------------------------------------ Private Const GWL_EXSTYLE = (-20)
Private Declare Function SetWindowLong Lib "user32" Alias "SetWindowLongA" _ (ByVal hWnd As Long, ByVal nIndex As Long, ByVal dwNewLong As Long) As Long
Private Declare Function GetWindowLong Lib "user32" Alias "GetWindowLongA" _ (ByVal hWnd As Long, ByVal nIndex As Long) As Long
Private Const RDW_INVALIDATE = &H1 Private Const RDW_ERASE = &H4 Private Const RDW_ALLCHILDREN = &H80 Private Const RDW_FRAME = &H400
Private Declare Function RedrawWindow2 Lib "user32" Alias "RedrawWindow" _ (ByVal hWnd As Long, ByVal lprcUpdate As Long, ByVal hrgnUpdate As Long, _ ByVal fuRedraw As Long) As Long
Private Sub Transparente() Dim tAlpha As Long tAlpha = 70 'Modificar aki el valor para hacerlo mas o menos transparente
'// Set WS_EX_LAYERED on this window Call SetWindowLong(hWnd, GWL_EXSTYLE, GetWindowLong(hWnd, GWL_EXSTYLE) Or WS_EX_LAYERED) '// Make this window tAlpha% alpha Call SetLayeredWindowAttributes(hWnd, 0, (255 * tAlpha) / 100, LWA_ALPHA) End Sub
Private Sub Form_Load() Transparente End Sub 1S4ludo
|
|
|
En línea
|
|
|
|
CeLaYa
Desconectado
Mensajes: 543
|
¿Como se podria aplicar este código a un solo control del Form?
|
|
|
En línea
|
"La soledad es el elemento de los grandes talentos". Cristina de Suecia (1626-1689) Reina de Suecia.
|
|
|
IP3
Desconectado
Mensajes: 73
|
Prueba con un control de usuario
|
|
|
En línea
|
|
|
|
~~
|
¿Como se podria aplicar este código a un solo control del Form? Eso es una indirecta diciendome q tengo la solucion ante los ojos enfocando esto solo hacia el form o es q tu tampoco lo sabes??? Prueba con un control de usuario A q te refieres?? 1S4ludo
|
|
|
En línea
|
|
|
|
dPix
Desconectado
Mensajes: 222
¬_¬ - ¬O.o
|
Imagino que se referiría a la libreria user32.dll, es lo único que se me ocurre, con eso quizás puedas modificar la transferencia del form.
Salu2,
dPix
|
|
|
En línea
|
|
|
|
dPix
Desconectado
Mensajes: 222
¬_¬ - ¬O.o
|
Efectivamente, IP3, era un control de usuario, aqui le dejo el código que googleando encontré (espero que sea esto lo que buscas). Esto a un módulo: Option Explicit
Private Declare Function SetLayeredWindowAttributes Lib "user32" (ByVal hWnd As Long, ByVal crKey As Long, ByVal bAlpha As Byte, ByVal dwFlags As Long) As Long Private Declare Function UpdateLayeredWindow Lib "user32" (ByVal hWnd As Long, ByVal hdcDst As Long, pptDst As Any, psize As Any, ByVal hdcSrc As Long, pptSrc As Any, crKey As Long, ByVal pblend As Long, ByVal dwFlags As Long) As Long Private Declare Function GetWindowLong Lib "user32" Alias "GetWindowLongA" (ByVal hWnd As Long, ByVal nIndex As Long) As Long Private Declare Function SetWindowLong Lib "user32" Alias "SetWindowLongA" (ByVal hWnd As Long, ByVal nIndex As Long, ByVal dwNewLong As Long) As Long
Private Const GWL_EXSTYLE = (-20) Private Const LWA_COLORKEY = &H1 Private Const LWA_ALPHA = &H2 Private Const ULW_COLORKEY = &H1 Private Const ULW_ALPHA = &H2 Private Const ULW_OPAQUE = &H4 Private Const WS_EX_LAYERED = &H80000
Public Function isTransparent(ByVal hWnd As Long) As Boolean On Error Resume Next Dim Msg As Long Msg = GetWindowLong(hWnd, GWL_EXSTYLE) If (Msg And WS_EX_LAYERED) = WS_EX_LAYERED Then isTransparent = True Else isTransparent = False End If If Err Then isTransparent = False End If End Function
Public Function MakeTransparent(ByVal hWnd As Long, Perc As Integer) As Long Dim Msg As Long On Error Resume Next If Perc < 0 Or Perc > 255 Then MakeTransparent = 1 Else Msg = GetWindowLong(hWnd, GWL_EXSTYLE) Msg = Msg Or WS_EX_LAYERED SetWindowLong hWnd, GWL_EXSTYLE, Msg SetLayeredWindowAttributes hWnd, 0, Perc, LWA_ALPHA MakeTransparent = 0 End If If Err Then MakeTransparent = 2 End If End Function
Public Function MakeOpaque(ByVal hWnd As Long) As Long Dim Msg As Long On Error Resume Next Msg = GetWindowLong(hWnd, GWL_EXSTYLE) Msg = Msg And Not WS_EX_LAYERED SetWindowLong hWnd, GWL_EXSTYLE, Msg SetLayeredWindowAttributes hWnd, 0, 0, LWA_ALPHA MakeOpaque = 0 If Err Then MakeOpaque = 2 End If End Function Donde quieres que funcione la transparencia pones: MakeTransparent Me.hWnd, x Donde x es un nº entre 0 y 255. Espero que sea esto. Codigo bastante interesante. Un saludo, dPix
|
|
|
En línea
|
|
|
|
IP3
Desconectado
Mensajes: 73
|
Exacto dPix, a eso me referia, ahora en unos proyectos que hice lo estaba buscando, justo cuando tu lo posteaste, me ahorraste trabajo! Buen aporte!!!!
|
|
|
En línea
|
|
|
|
CeLaYa
Desconectado
Mensajes: 543
|
a lo que me referia es a como puedo aplicar la transparencia por ejemplo a un command o a un picture sin que el form se haga transparente
|
|
|
En línea
|
"La soledad es el elemento de los grandes talentos". Cristina de Suecia (1626-1689) Reina de Suecia.
|
|
|
|
Mensajes similares |
|
Asunto |
Iniciado por |
Respuestas |
Vistas |
Último mensaje |
|
|
Semi- Bot para Hi5
Programación Visual Basic
|
yalosabes
|
0
|
1,519
|
21 Febrero 2011, 23:57 pm
por yalosabes
|
|
|
[Solucionado] Diferencias en Form con fondo transparente en Win7 x64 y x86 (C#)
.NET (C#, VB.NET, ASP)
|
Xephiro
|
3
|
6,120
|
22 Marzo 2011, 14:51 pm
por Xephiro
|
|
|
Crear controles runtime y agrandar el form
Programación Visual Basic
|
$Edu$
|
6
|
2,713
|
26 Septiembre 2011, 02:47 am
por $Edu$
|
|
|
PC semi-gamer y actualizable (~600€)
Hardware
|
Morty_13
|
6
|
4,279
|
8 Agosto 2012, 23:26 pm
por worldrings
|
|
|
Windows Form transparente
.NET (C#, VB.NET, ASP)
|
diegoCmC
|
4
|
4,284
|
1 Abril 2014, 10:55 am
por diegoCmC
|
|