help please, thank you

Hello, im doing a little project on visual studio Windows Forms App (c#). There are 2 forms each containing 2 User Controls. each user control is full of labels of dogs/cats (either picture or text, random) (picture to visualize) the goal is so when u click 1 UC (usercontrol) on each form, a special label appears on the top left of the window, according to the instructions. I'll add pictures. just need help to fix a small bug. if you wanna help send me a DM.
No description
8 Replies
Jimmacle
Jimmacle3w ago
don't request DMs, the point of the thread is to solve the issue here
donald duck the fifth
i can't send the entire code here bro, is that expected?
Jimmacle
Jimmacle3w ago
$paste
MODiX
MODiX3w ago
If your code is too long, you can post to https://paste.mod.gg/, save, and copy the link into chat for others to see your shared code!
donald duck the fifth
BlazeBin - wcwvqsjsnbge
A tool for sharing your source code with the world!
donald duck the fifth
MyEventArgs.cs using System; using System.Windows.Forms; namespace RecoursiveConstructor_Image_Text { public class MyEventArgs : EventArgs { public List<Label> Labels { get; private set; } public MyEventArgs(List<Label> labels) { Labels = labels; } } } that's it prety much
Fayoka
Fayoka3w ago
you have to explain the bug my friend; i aint gonna read trough your code while I am not sure what I am looking for, it's good that you explained the goal of the program and used some visual aids. But sharing the code, and the actual problem are equally important. On top of that you also explain what you have already tried.

Did you find this page helpful?