this.roomChoice.Title = " Select a classroom: ";
this.roomChoice.Subtitle = "";
if (frmRoomMaint.cbxRoomsChoice = null)
{
SetRoomOptions();
}
else
{
//cbxRooms is the dropdownlist on frmWizard
cbxRooms = frmRoomMaint.cbxRoomsChoice;
cbxRooms.Enabled=false;
}
这是错误消息:
Error An object reference is required for the non-static field, method, or property
我正在创建一个可以从菜单中调用的向导,或者在从下拉列表中选择房间后右键单击某个表单。如果从表单打开向导,我希望向导中的下拉列表已经选择了相同的房间并被禁用。如果从菜单中选择,用户可以自由选择下拉列表中的任何房间。
如果需要任何澄清,请告诉我。谢谢!