我制作了一个控件库和两个用户控件。
userControl_1 contains a Panel and an ImageList that I have "loaded" with
images in design time.
userControl_2 contains a PictureBox
我已将 userControl_1 放在 Windows 窗体上。userControl_2 位于 userControl_1 的面板区域。
目标是从 imageList 中选择一个图像并用 pictureBox 显示它,如下所示:
nameOfPictureBox.Image = nameOfList.Image[number]
但我不让它工作。我不明白如何在用户控件之间进行通信?我猜上面的代码应该在userControl_1里面?但是我应该把代码放在哪里,在 userControl_1.cs 类文件或 userControl_1.Designer.cs 文件中?
一些帮助!谢谢!