我的场景:
我在 Windows 窗体应用程序中做学校管理系统,我必须从 GUI 添加类并将这些类链接到部分(它将显示哪个类具有哪些部分),因此我正在从部分加载部分并希望显示它们在复选框中,以便用户可以选择他正在添加的该类的部分。
问题 :
我无法在复选框中显示这些部分,这确实很容易为新课程选择部分
我想要的是 :
我希望我正在加载的部分应该以复选框的形式显示。
我的代码:
try
{
Sections objSections = new Sections();
objSections.LoadAll();
if (objSections.RowCount > 0)
{
List<CheckBox> Sectionlist=new List<CheckBox>();
for (int i = 0; i < objSections.RowCount; i++)
{
Sectionlist.Add(objSections.Name); // here is error "Some invalid arguments"
}
}
else
{
DevComponents.DotNetBar.MessageBoxEx.Show(" No Section Found, Please Add some Section And linke them with Classes. ", " Information Message! ");
return;
}
}
catch (Exception ee)
{
DevComponents.DotNetBar.MessageBoxEx.Show(ee.Message);
return;
}