Creating Transparent Rectangle Over Form?

Feb 7, 2012

i have this code that suppost to overlay a transparent rectangle over my form. Program is that i do not know what "e" should be set/defined as:

e.Graphics.FillRectangle(color.fromargb(127.5,255,255,255), New Rectangle(0, 0, 100, 100))

[code]....

View 2 Replies


ADVERTISEMENT

VS 2010 Creating A Rounded Rectangle W/ Transparent Corners?

Jan 24, 2011

I know how to create the Rounded Rectangle, but what i don't know how to do, is make the area outside of the rounded rectangle (the corners) become transparent This is going to be used on a usercontrol, so i really need it to be transparent and not just blend in (ie adapt to the colour of the parent form).

View 9 Replies

Make A Circular Portion Of Rectangle Transparent?

Apr 26, 2011

If I were to draw a rectangle with e.Graphics.FillRectangle(), how would I make a circular portion of the rectangle transparent?

View 1 Replies

C# - Making Rectangle Completely Transparent (Hole In Window) WPF

Feb 7, 2012

I have a rectangle that I dynamically draw in a Window. Said Window has a background with it's opacity set to 0.4. I'd like to make the area inside the rectangle completely transparent (see what's behind the window).

Here is the code of my Window :
<Window x:Class="TakeAScreenzone"
xmlns="[URL]"
xmlns:x="[URL]"
Title="PloofTAS" Height="355" Width="539" Topmost="True"
[Code] .....

View 2 Replies

Creating Moving Object In Rectangle Box?

Mar 20, 2009

1. I have created a moving object (which is a button) in a form (rectangle box) called "Enjoy Button" and it moves when
2. A specific button named "Start Timer" is pressed...When the "Start Timer" button is pressed,
3. The "xTimer" event is called and the button moves in a rectangle box and bounces of the walls...=animation
4. However, i need to write a For..Next Loop in the
5. "For Next " Button= a button named for next
6. And also put a counter in the loop to control the animation time..
7. The loop should stop at a certain time, and the object too should stop at that time,at a new location

This is what I have so far
Private Sub ForNextButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles xForNextButton.Click, xTimer.Tick
Dim MyTime As Integer = 5
Counter = 1000
For Counter = 0 To 1000
xTimer.Enabled = MyTime * 1
' Move the button for a set amount of time
' Exit the loop
Next

View 15 Replies

.net - Creating Transparent Background In WPF?

Apr 1, 2010

I have a button with a backgroun image of color white. My button is sitting on the toolbar which has a bacground color of Blue. When the button is sitting on the toolbar, the button looks white, however I want it to look like blue as the the background color of toolbar is Blue.

How should I achieve this in WPF..

View 3 Replies

Semi-Transparent Child Form (or Other Semi-transparent Layer) Within A Form?

Dec 16, 2011

I'm trying to draw a semi-transparent layer over my entire form when certain events occur, with a prompt in front of this semi-transparent layer (similar to the effect in Windows Vista/7 with UAC enabled)At first I was trying to use a custom semi-transparent panel, but this didn't seem to work at all. As such I'm now trying to use a child form within the form using the opacity property on the form. However, when this semi-transparent form is added to the controls of the main form and displayed, it loses it's transparency.I've got a hacky work around at the moment where the semi-transparent layer isn't actually a component within the main form, and the transparency works then, but obviously this isn't ideal and could potentially cause various issues further down the line.

View 1 Replies

List(of Rectangle), Rectangle.offset(x,y) Doesn't Work?

Jul 26, 2010

i've got a little problem with List(on T) variables.

[code]...

It works perfectly fine. Does anyone know what the problem is?

View 2 Replies

Identify Subtriangle Within A Rectangle Given A Coordinate In That Rectangle?

Feb 22, 2010

Given a rectangle of width w and height h. and a coordinate x,y in that rectangle I would like to identify which triangle I am within.

i.e. the function should take parameters(x,y) and return a,b,c,d or a zero based number representing that triangle index i.e. (0=A,1=B,2=C,3=D) if they are in that order.

I think this would be something like >= the formula of the red line and >= the formula of the green line?

I'd like to implement this in VB.NET

View 3 Replies

Draw Rectangle Outside Of Form?

Jun 6, 2011

Draw rectangle outside of form?[url]...

View 1 Replies

VS 2010 Draw Rectangle Outside Of Form?

Oct 14, 2010

How to do it?

View 8 Replies

How To Add Rectangle Shape To Windows Form And Display It

Aug 3, 2011

I created a rectangle shape and tried to show it at my form like this
Imports Microsoft.VisualBasic.PowerPacks
Public Class frmBoard
Dim baseDice As RectangleShape
Private Sub frmBoard_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
baseDice.CornerRadius = 5
[Code] .....

View 1 Replies

When Load Form Rectangle Only Shows On Last Add Data

Jan 13, 2011

i add a rectangle and label to datagridview...my problem is that when i load the form the rectangle only shows on the last add data..how can i make all the data display in rectangle not only the last add data.[code]

View 3 Replies

Draw Rectangle Divided To Four Rectangle?

Dec 3, 2011

This code is to draw rectangle. How can I draw rectangle divided to four rectangle or more

e.Graphics.DrawRectangle(Pens.Coral, 50, 200, 30, 40)

View 11 Replies

Drawing Rectangle Inside Another Rectangle?

Jul 26, 2009

I'M creating a kind of photo viewer, and I cannot figure out how to orient the scroll buttons with the photos I want to draw because they all are different sizes.This is really hard to explain so please ask questions if you don't understand.I'M thinking if i could draw every photo on a single rectangle and then the scroll bars will position that rectangle up or down. but is there a way to make a rectangle inside another one so it only shows inside that rectangle?

View 10 Replies

Interface And Graphics :: Drawing A Rectangle Or A Point On A Form?

Jun 8, 2010

I'm just getting started, and it's as simple as that: I need guidance to draw a rectangle or place a dot or a point on Form1, in VB 2008 Express. I knew how in VB6 -- let's build on that.

View 3 Replies

Remove Filled Rectangle Put On A Form / Control Using FillRectangle Method?

Aug 14, 2009

Any method to remove the Filled Rectangle I put on a form / control using FillRectangle method? Or do I have to over-paint it with the same colour as the form ?

View 1 Replies

VS 2008 Game Code - Sub Moves A Rectangle To The Center Of The Form

Jul 27, 2009

This sub moves a rectangle to the center of the form and when it gets there it moves back to its original location. But something weird has happened and the rectangle still moves, but the boolean values dont change. I tested to see if that part of the code was executed by putting a messagebox where the boolean values are supposed to change and the messagebox didnt appear.

Here is the sub:

Public Sub Start()
Dim Energy As New PictureBox
_IsMoving = True 'here is the boolean values along with some other variables

[CODE]...

View 3 Replies

Winforms - Advanced GUI Design - Form Display As A Rounded Rectangle

Mar 30, 2011

Is it possible to design my form like 3D? Or having my form displayed as a rounded rectangle?

View 3 Replies

Make Part That Drops Down Semi-transparent Or Completely Transparent Resembling Floating Text?

Oct 27, 2010

[code] how to make the part that drops down semi-transparent or completely transparent resembling floating text. So that I can see the form underneath.

View 1 Replies

Display A Transparent Png Into The Form

Jan 20, 2011

i want to display a transparent png into the form, i know picturebox doesn't suport tranparency. my image has a transparent background .i want it to be like i can see the picture behind the png(its like a watermark what ever picture is diplayed inthe bakground it should be visible through the image above it)

[Code]...

View 2 Replies

Form Transparent But Not The Controls?

Apr 5, 2010

I know Opactity controls a form's tranparency but the controls have the same level of tranparency too.

View 5 Replies

How To Create Transparent Form

Mar 11, 2009

This picture was captured when jetaudio was playing music..

View 3 Replies

Possible To Make Form Transparent?

Jul 13, 2010

Is it possible to make ONLY form transparent and other things like, panels and pictureboxes on it are set to opacity 100%? That means, panels and pictureboxes are not transparent.

View 14 Replies

TextBox - In A Transparent Form

Dec 6, 2009

I set form.Opacity = 0.5, textbox1.Multiline = True, textbox1.Height = 60. when running the code, i key-in any text in Textbox, until textbox's Vertical scrollbar visible, when i move up the scrollbar, system hang and wait few minute then system become normal back.

View 1 Replies

Transparent Form But Visible Controls?

Dec 21, 2009

if I set the property Opacity = 0, a form becomes transparent... but become transparent all it controls, too!how to make transparent ONLY the form and let the controls, labels, buttons etc. visible??

View 3 Replies

2010 Form Background Transparent?

Feb 5, 2011

how can I make my Form background color transparent?just the form those object/text are not included.

I watched this in yout*** like a month ago, i keep on searching but i cannot find.if you want to be happy, find something you love to do and do it for free, then find someone to pay you for it.

View 1 Replies

Alpha Transparent PNG Form Too Slow?

Mar 5, 2011

I have problems with transparent form problem is that its too slow example if i click on button where it should just switch another panel control it takes 3-4 seconds because of redrawing [url] so at form load is called redraw() and if i click on a button and panel is switched i again call redraw() form load 6 second switching panels 3-4 seconds

View 1 Replies

C# - Display Form As Partially Transparent?

Dec 9, 2010

I have a transparent layer on the top of a form. I need to display only some part of that transparent form.

-edited- If you think of a map and traffic signal icons displaying on the map. There are a map image layer and a traffic signal icons layer, which is tranparent except icons. if you move the map location, the traffic signal icons should move along with. if the certain area of map does not appear on the screen by moving, corresponding traffic signal icnos should disappear as well. This is what I am trying to do here. Moving the trasparent form is straightforward, but I need to hide some portion of that transparent form.

[Map]
[Traffic sig] here I need to show "fic s" part only.

This is for a very small image.

View 1 Replies

Form Transparent But Controls Visible?

Aug 20, 2010

When I make my form Opacity 0% everything disappears including controls that I know will happen im not dumb ok so I tried another method using Transparency Key I had success BUT my problem there is that when I have a picture box and an image IN the picture box around the image is the Form Background color so lets say I picked Maroon for Form1.BackColor, The edges of my image is Maroon

View 6 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved