PIbd-22. Stroev V.M. Lab Work 04 #6
@ -97,6 +97,7 @@
|
|||||||
listBoxStorages.Name = "listBoxStorages";
|
listBoxStorages.Name = "listBoxStorages";
|
||||||
listBoxStorages.Size = new Size(144, 104);
|
listBoxStorages.Size = new Size(144, 104);
|
||||||
listBoxStorages.TabIndex = 9;
|
listBoxStorages.TabIndex = 9;
|
||||||
|
listBoxStorages.Click += ListBoxObjects_SelectedIndexChanged;
|
||||||
//
|
//
|
||||||
// textBoxStorageName
|
// textBoxStorageName
|
||||||
//
|
//
|
||||||
|
@ -42,6 +42,12 @@ namespace Monorail
|
|||||||
{
|
{
|
||||||
listBoxStorages.SelectedIndex = index;
|
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)
|
private void ButtonAddObject_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user