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.

8 Replies
don't request DMs, the point of the thread is to solve the issue here
i can't send the entire code here bro, is that expected?
$paste
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!
Form1.cs
https://paste.mod.gg/wcwvqsjsnbge/0
UserControl1.cs
BlazeBin - wcwvqsjsnbge
A tool for sharing your source code with the world!
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
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.