PIbd-22. Stroev V.M. Lab Work 04 #6

Closed
StroevVladimir wants to merge 3 commits from Lab04 into Lab03
2 changed files with 7 additions and 0 deletions
Showing only changes of commit 4e7e01499f - Show all commits

View File

@ -97,6 +97,7 @@
listBoxStorages.Name = "listBoxStorages";
listBoxStorages.Size = new Size(144, 104);
listBoxStorages.TabIndex = 9;
listBoxStorages.Click += ListBoxObjects_SelectedIndexChanged;
//
// textBoxStorageName
//

View File

@ -42,6 +42,12 @@ namespace Monorail
{
listBoxStorages.SelectedIndex = index;
}
var obj = _storage[listBoxStorages.SelectedItem.ToString() ?? string.Empty];
if (obj == null)
{
return;
}
pictureBoxCollection.Image = obj.ShowMonorails();
}
private void ButtonAddObject_Click(object sender, EventArgs e)
{