Hello i have an image that can be move using arrow keys.
Problem is image is behind the group box.
Question: How can I make this image visible within the group box?
HELP. c#.
5 Replies - 133 Views - Last Post: 05 February 2013 - 09:09 AM
#1
Question: How to make picturebox appear in the groupbox.
Posted 05 February 2013 - 01:29 AM
Replies To: Question: How to make picturebox appear in the groupbox.
#2
Re: Question: How to make picturebox appear in the groupbox.
Posted 05 February 2013 - 01:41 AM
click on the picture box, right click > Bring to front
Until it show
Until it show
#3
Re: Question: How to make picturebox appear in the groupbox.
Posted 05 February 2013 - 02:18 AM
No visible image in the design because I only declared the picture box in my code. Here
public partial class Game1 : Form
{
PictureBox pic = new PictureBox();
public Game1()
{
InitializeComponent();
pic.BackColor = Color.Red;
pic.Size = new Size(20, 20);
pic.Location = new Point(20, 25);
pic.Controls.Add(pic);
}
#4
Re: Question: How to make picturebox appear in the groupbox.
Posted 05 February 2013 - 02:36 AM
Sorry,, you had post in wrong forums. This is vb.net forum
#5
Re: Question: How to make picturebox appear in the groupbox.
Posted 05 February 2013 - 08:20 AM
to C# we go
#6
Re: Question: How to make picturebox appear in the groupbox.
Posted 05 February 2013 - 09:09 AM
Closing this thread since there is already an existing thread.
This post has been edited by Skydiver: 05 February 2013 - 09:26 AM
Page 1 of 1
|
|

New Topic/Question
This topic is locked



MultiQuote






|