问题描述
目前在c#中如何获取图片右侧的图片框图像我正在获取图片下一行标签,但我需要在桌面布局面板旁边的图片框文字。这是我的代码
PictureBox pb = new PictureBox();
pb.ImageLocation = ../ imagesDT / answers.gif
tableLayoutPanel1.Controls.Add(pb);
我试图将图像保留在表布局面板的标签旁边,但目前正在标签下方的图像
how to get picture box image at right side in table lay out in c# at present i am getting image next line of label but i need picture box text beside a label in table lay out panel.Here is my code
PictureBox pb = new PictureBox();
pb.ImageLocation = ../imagesDT/answered.gif
tableLayoutPanel1.Controls.Add(pb);
I am trying to keep image beside the label in table lay out panel but at present getting image below the label
这篇关于如何将表格右侧的图片框放在窗口中c#的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!