- Прозрачность в Microsoft Forms Transparency in Microsoft Forms
- См. также See also
- Поддержка и обратная связь Support and feedback
- Как сделать прозрачную форму?
- Transparency for windows forms textbox
- 6 Answers 6
- C# Windows Form Transparent Background Image
- 2 Answers 2
- Transparent images with C# WinForms
- 6 Answers 6
Прозрачность в Microsoft Forms Transparency in Microsoft Forms
Microsoft Forms поддерживает прозрачность в двух областях: фон определенных элементов управления и в растровых изображениях, используемых для определенных элементов управления. Microsoft Forms supports transparency in two areas: the background of certain controls, and in bitmaps used on certain controls.
Свойство BackStyle определяет, является ли элемент управления прозрачным. The BackStyle property determines whether a control is transparent. Прозрачный элемент управления позволяет видеть, что находится в форме позади этого элемента. A transparent control lets you see what is behind it on the form. Это полезно, если в форме используется декоративный фон и нужно минимизировать часть фона, закрываемую элементами управления. This is useful if you have a decorative background on the form and you want to minimize the amount of that background that is hidden behind the controls. Для получения дополнительных сведений о том, как сделать элемент управления прозрачным, ознакомьтесь со статьей Создание прозрачного элемента управления. For more information about making a control transparent, see Create a transparent control.
В Microsoft Forms растровое изображение можно отобразить на многих элементах управления. You can display a bitmap on many controls in Microsoft Forms. Некоторые элементы управления поддерживают прозрачные растровые изображения, то есть растровые изображения, в которых один или несколько цветов фона прозрачны. Certain controls support transparent bitmaps, that is, bitmaps in which one or more background colors are transparent. Прозрачность растрового изображения не управляется никаким свойством элемента управления, она управляется цветом нижнего левого пикселя изображения. Bitmap transparency is not controlled by any control property; it is controlled by the color of the lower-left pixel in the image. В Microsoft Forms не предусмотрен способ, позволяющий редактировать растровое изображение или сделать его прозрачным — для этой цели необходимо использовать редактор изображений. Microsoft Forms does not provide a way to edit a bitmap and make it transparent; you must use a picture editor for this purpose.
В Microsoft Forms растровые изображения всегда прозрачны для следующих элементов управления: In Microsoft Forms, bitmaps are always transparent on the following controls:
- CheckBoxCheckBox
- CommandButtonCommandButton
- МеткаLabel
- OptionButtonOptionButton
- ToggleButtonToggleButton
Прозрачные изображения иногда кажутся мутными. Transparent pictures sometimes have a hazy appearance. Если такое представление не подходит, отображайте изображение на элементе управления, поддерживающем непрозрачные изображения. If you do not like this appearance, display the picture on a control that supports opaque images.
При использовании прозрачного растрового изображения для элемента управления, не поддерживающего прозрачные растровые изображения, он будет отображаться правильно, но вы не сможете увидеть, что находится позади этого изображения. If you use a transparent bitmap on a control that does not support transparent bitmaps, the bitmap will display correctly, but you won’t be able to see what’s behind it. В Microsoft Forms прозрачные растровые изображения не поддерживаются следующими элементами управления: In Microsoft Forms, the following controls do not support transparent bitmaps:
- Окно формы (UserForm) The form window (UserForm)
- FrameFrame
- ОбразImage
- MultiPageMultiPage
См. также See also
Поддержка и обратная связь Support and feedback
Есть вопросы или отзывы, касающиеся Office VBA или этой статьи? Have questions or feedback about Office VBA or this documentation? Руководство по другим способам получения поддержки и отправки отзывов см. в статье Поддержка Office VBA и обратная связь. Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.
Как сделать прозрачную форму?
Как сделать прозрачную форму при этом чтоб все компоненты можно было видеть. функция Opacity Не подходит.
Добавлено через 5 минут
TransparencyKey = BackColor;
то что надо
Как сделать прозрачную форму с непрозрачными элементами
Нашёл функцию Opacity, но она делает прозрачной и форму, и всё что на ней, а мне нужно, чтобы был.
Как сделать прозрачную кисть в «Paint»
На экзамен задали написать свой paint. Не удается сделать красивое рисование от руки с.
Как создать прозрачную кнопку?
1.Необходимо, чтобы кнопка принимала за фон изображение, которое находится на фоне. 2. Кнопка.
Как сделать форму невидимой
Существует одна форма, и надо чтобы от неё висел только процесс. В коде прописано событие на.
Это не совсем верно.
Так как если к примеру будет контрол с цветом «BackColor», то он тоже будет прозрачный.
Если нужно ВСЮ форму сделать прозрачной то делаем так:
И еще заметка
Лучше всего использовать светло зеленый, как фон формы
Он сильно отличается от других цветов и поэтому компьютеру легко его выделить.
Как в фильмах, все объекты к которым будет перерисовыватся комп. графика, снимаются на зеленом фоне
Потом соответственно и выставляешь, TransparencyKey как зеленый.
Transparency for windows forms textbox
I’m using windows forms in C# and I need to make a textbox’s background color transparent. I have a trackbar that goes from 0 to 255 that is supposed to control it, but I’m having some trouble. I created a question earlier today asking the exact same thing, but no success.
Here is the code I currently have:
The problem is that absolutely nothing happens. Any ideas on why this is not working?
On the previous question, this nice guy said something about SetStyle(ControlStyles.SupportsTransparentBackColor, true); , but I have no idea on where I should put this.
6 Answers 6
You need to try out something like this.
Add a new user control , say CustomTextBox and change
You will then get the following error saying that the ‘AutoScaleMode’ is not defined. Delete the following line in the Designer.cs class.
Make changes to the constructor of your newly added control as follows.
Build, close the custom control designer if open and you will be able to use this control on any other control or form.
Drop it from the toolbox as shown below
Create a new control which inherits from TextBox, set the style to allow tranparency in the constructor. Then use your new control instead of TextBox
Do this in your constructor:
This will allow your new control to have a transparent background color.
You can read more about control styles here; MSDN: Control Styles, this may help as well; Inheriting from a Windows Forms Control with Visual C#
I never liked having to make my own inherited controls for this. So I made a wrapper function to the private SetStyle function.
Try using it instead of creating your own class?
bool itWorked = SetStyle(myControl, ControlStyles.SupportsTransparentBackColor, true);
Sorry to uncover old posts, however, been searching for a few days now to find a solution to this awful problem of no transparency for textboxes. (Amazingly MSAccess has a check state to show transparency!)
Anyways, I have built a VB workaround, however, it is very crude and whilst may help a lot of people would also like any input from the more hard-core’rs with any insights.
It basically uses the textbox, then sizes it away and replaces with a label (hence now representing a transparent «appearing» textbox. Also couple of other things like stopping the beeping if press enter on a single line textbox.
To use — Create a new class and paste ALL the code over the top this should create two custom objects ( CTextBox and CLabel ) — you only need to use CTEXTBOX in your form design.
Easily converts into C, if that’s your language, but please let me know if have any suggestions?
C# Windows Form Transparent Background Image
When I tried from with transparent background, it’s not completely transparent. I tried two code blocks for this issue. First i tried like this code:
it look like this picture;
Then i found some different codes and tried ike this;
And this looks like this picture;
You can see logo with a white border. I want to show only .png Logo completely transparent. What should i do? How can do this?
Here is my Logo image as .png;
2 Answers 2
Using a layered window can significantly improve performance and visual effects for a window that has a complex shape, animates its shape, or wishes to use alpha blending effects. The system automatically composes and repaints layered windows and the windows of underlying applications. As a result, layered windows are rendered smoothly, without the flickering typical of complex window regions. In addition, layered windows can be partially translucent, that is, alpha-blended.
Create layered window in Windows Forms
Here is some code from msdn code gallery which demonstrates creating Layered Windows in Windows Forms. It allows you to create a shaped splash screen and let you to move it by mouse.
Add PerPixelAlphaForm to the project and then it’s enough to inherit from this form and call its SelectBitmap and pass your png to the method to create a layered window.
PerPixelAlphaForm.cs
SplashScreen.cs
Note
The original answer was based on turning double buffer off and overriding OnPaintBackground and drawing the image without calling base method. The answer had a known issue; while the form was moveless it was working well but if form was moving or the window behind the form was changed the window was not updating. You can see previous code in revisions. The current edit which is completely based on an MSDN code doesn’t have any known issue.
Transparent images with C# WinForms
I am working on a Windows Forms application in VS 2008, and I want to display one image over the top of another, with the top image being a gif or something with transparent parts.
Basically I have a big image and I want to put a little image on top if it, so that they kinda appear as one image to the user.
I’ve been trying to use a picturebox, but this doesn’t seem to have worked, any suggestions?
6 Answers 6
I was in a similar situation a couple of days ago. You can create a transparent control to host your image.
PictureBox has 2 layers of images: BackgroundImage and Image, that you can use independently of each other including drawing and clearing.
Put the big/bottom image on a PictureBox , then add a handler to the OnPaint event and use one of the e.Graphics.DrawImage() overloads. You can load the image using Image.FromFile() .
The small/top image will have to have an alpha channel and be transparent in the background for the overlay to work. You should be able to ensure this pretty easily in Photoshop or something similar. Make sure you save in a format that supports the alpha channel, such as PNG.
The vb.net code (All credits to Leon Tayson):
A list of similar posts is referenced at the bottom of this reply.
This reply addresses pictureBoxes and Winforms (in the other posts below, several reiterate that WPF solves this well already)
- Create Winform
- Create x2 pictureBoxes
- foreground_pictureBox // picture box ‘in front’ of ‘background’
- background_pictureBox // picture box ‘behind’ the ‘foreground’
- Add the ‘paint’ event for each pictureBox
- select object in the ‘designer’
- choose the ‘properties’ tab (or right-click and choose from popup menu)
- select the events button (small lightning bolt)
- double-click in the empty field to the right of the ‘paint’ event
- Add the following code to the main form’s ‘load’ function (if not already added, use the approach in step 3 and select ‘on load’ rather than ‘paint’)
5 . In the ‘paint’ call for the ‘background_pictureBox’:
6 . Within the ‘foreground_pictureBox_Paint’ call, add in whatever graphics calls you want to be displayed in the foreground.
This topic repeats itself in several posts it seems: