假設我有這個代碼。如何將smallGroups
傳遞給UpdatePlayer
表單。我需要能夠將生成的數據帶到var列表中,並在UpdatePlayer
中使用它來填充combobox
。如何將var列表傳遞給另一個winform
public class GroupsPlayers
{
public string GroupID;
public string GroupName;
}
public void Groups() {
var smallGroups = new List<GroupsPlayers>();
while(rd.Read())
{
var currentPlayer = new GroupsPlayers() {
};
smallGroups.Add(currentPlayer);
}
MessageBoxResult userResponse = MessageBox.Show(msgBoxMsg, "Groups Manager", MessageBoxButtons.YesNo);
if(userResponse == DialogResult.Yes)
{
UpdatePlayer frmPlayers = new UpdatePlayer(this, smallGroups);
}
}
上面的代碼有什麼問題?您是否沒有UpdatePlayer中的屬性來存儲smallGroups?然後在加載期間將該屬性設置爲組合框的數據源? –