- 0
[C#] Issue with making one picturebox appear ontop of another
-
Recently Browsing 0 members
- No registered users viewing this page.
-
Posts
-
By ExPat · Posted
We went from a Latitude 7450 to Dell Pro 14 Plus PB14250 -
By LoneWolfSL · Posted
EA Sports UFC 5 is free-to-play on Xbox Series X|S this weekend by Pulasthi Ariyasinghe Every Thursday Microsoft brings in a fresh slate of games for Xbox gamers to try over the weekend as a part of its Free Play Days promotion. The latest refresh that arrived today only revealed a single title for the weekend, and that's EA Sports UFC 5. This is a special occasion as well. Unlike the standard events, this one does not require any tier of Game Pass to jump in. All Xbox Series X|S owners can play the game over the weekend, even if they do not have a Core subscription. As always, any progress made during the weekend also carries over automatically if you decide to purchase the game afterward. Coming in from EA Sports, UFC 5 is the latest entry in the long-running mixed martial arts fighting games. This installment landed in 2023 for the latest generation consoles. Built on DICE's Frostbite Engine for the first time, the title event received an M rating by the ESRB for its realistic injury system, as EA wanted to make a more authentic experience akin to the real-world sport. The damage system, dubbed the Real Impact System, involves depicting blood and sweat on fighters as well as facial injuries. Having injuries like bruised eyes or broken noses can even affect the performance of a fighter due to impaired vision or breathing difficulty. A doctor stoppage may even happen if the injuries become too severe. UFC 5 offers a single-player career mode to become the top-ranked fighter, online modes for competitive action, and special events tied to real-world fights. Here are the store links for the game: UFC 5 - $27.99 (Xbox Series X|S) UFC 5 Deluxe Edition - $31.99 (Xbox Series X|S) UFC 5 Ultimate Edition - $89.99 (Xbox Series X|S) This Free Play Days promotion will end on Sunday, June 29, at 11:59 pm PT. Following this, expect another round of games to enter the program next Thursday, July 3. -
By hellowalkman · Posted
Windows 11 KB5060826 optional update brings better Setup, new data migration tool, more by Sayan Sen Alongside KB5060829 for Windows 11 24H2, Microsoft has also released its C-release non-security preview update for Windows 11 23H2 and 22H2 today. The new update is rolling out under KB5060826 (builds 22621.5549 and 22631.5549). KB5060826 brings an upgraded Setup which will now let admins choose whether to deploy critical updates during the OOBE (the initial out-of-box experience setup on Windows). Alongside that, it also adds the new PC migration experience on Windows Backup, as well as the default app changes related to the European Economic Area (EEA) region. The full changelog is given below: First up we have the changes and improvements for Gradual Rollout: [App defaults] New! We are rolling out some small changes in the European Economic Area (EEA) region for default browsers through the Set default button in Settings > Apps > Default apps: Additional file and link types will be set for the new default browser, if it registers them. The new default browser will be pinned to the Taskbar and Start menu unless you choose not to pin it by clearing the checkboxes. There is now a separate one-click button for browsers to change your .pdf default, if the browser registers for the .pdf file type. [PC Migration] New! The PC-to-PC migration experience in Windows is starting to roll out. You’ll begin to see the landing and the pairing page in the Windows Backup app, giving you a first look at what’s coming. In the full experience, you’ll be able to transfer files and settings from an old PC to a new one during setup. Support for this feature during PC setup will arrive in a future update. The rollout is being introduced in phases to support a smooth experience. [Windows Share] New! When you share links or web content using the Windows share window, you will see a visual preview for that content. Up next, we have Normal Rollout features: [Windows Setup] New! Admins can configure whether a new device gets critical updates during the out-of-box experience (OOBE). The update has a single known issue related to Noto fonts. You can view the support article here on Microsoft's official website. The update can be obtained by clicking on "Check for optional updates" inside Windows Update. You can also download it manually from Microsoft Update Catalog website. -
By Som · Posted
American? Yer whole 120v limitation is madness. You can still get low powered pcs , nice, that'll do the job -
-
-
Recent Achievements
-
jfam earned a badge
One Month Later
-
TheRingmaster earned a badge
First Post
-
Kavin25 earned a badge
Conversation Starter
-
Leonard grant earned a badge
One Month Later
-
pcdoctorsnet earned a badge
Week One Done
-
-
Popular Contributors
-
Tell a friend
Question
Pierce28
Hey,
I am currently working on a program to teach myself C#. In it, a person is "throwing" meatloaf at a picture of Hilary Clinton's head. (long story). I've created the picturebox containing Hilary's head from the toolbox, but I created my meatloaf pictureboxes from code. I have right clicked on Hilary's picture and selected "Send to Back", and used the Meatloaf.BringToFront();, but for some reason, the meatloaf always goes behind Hilary's head, making it hidden.
The code I used to set up the Meatloaf pictureboxes is
(global) public PictureBox[] picNewMeatLoaf = new PictureBox[20]; (In a FormLoad) for (int j = 1; j <= 19; j++) { picNewMeatLoaf[j] = new PictureBox(); picNewMeatLoaf[j].BringToFront(); } __________________________________ (In a AddMeatLoaf() procedure) this.SuspendLayout(); picNewMeatLoaf[i].Location = new Point(0, 0); picNewMeatLoaf[i].Size = new Size(75, 25); picNewMeatLoaf[i].BringToFront(); picNewMeatLoaf[i].Image = this.picMeatLoaf.Image; this.Controls.AddRange(new Control[] { picNewMeatLoaf[i] }); this.ResumeLayout(); ___________________________________ (in a timer) for (int j = 1; j < 20; j++) { if (this.picNewMeatLoaf[j].Top < 305 & picNewMeatLoaf[j].Left < 693) //305 is the ground level, 693 is the spot on Hilary's face to stop { this.picNewMeatLoaf[j].Top = picNewMeatLoaf[j].Top + 1; this.picNewMeatLoaf[j].Left = picNewMeatLoaf[j].Left + MeatLoafSpeed[j]; }
That is just the code related to the MeatLoaf picturebox, so obviously there is a lot more code. Note, this is my first real attempt at a program with C#, so the code isn't going to be the best.
Does anyone see what I'm doing wrong or have any suggestions? I'm all out of ideas, and I'd rather not have to just add it into the form1's background image. If you need anymore code or information, just let me know.
Oh, and if anyone has any ideas on how to make parts of picture boxes transparent, meaning they show the objects behind it, it would be VERY appreciated.
Pierce
Link to comment
https://www.neowin.net/forum/topic/559974-c-issue-with-making-one-picturebox-appear-ontop-of-another/Share on other sites
1 answer to this question
Recommended Posts