Финальный вариант 4 лабораторной

This commit is contained in:
AnnZhimol 2022-10-19 09:35:18 +04:00
parent 332cf2b91e
commit 6ca9449eb0
3 changed files with 2 additions and 2 deletions

View File

@ -102,7 +102,7 @@
this.listBoxMaps.Name = "listBoxMaps";
this.listBoxMaps.Size = new System.Drawing.Size(170, 94);
this.listBoxMaps.TabIndex = 3;
this.listBoxMaps.SelectedIndexChanged += new System.EventHandler(this.listBoxMaps_SelectedIndexChanged);
this.listBoxMaps.SelectedIndexChanged += new System.EventHandler(this.ListBoxMaps_SelectedIndexChanged);
//
// ButtonAddMap
//

View File

@ -107,7 +107,6 @@ namespace Warship
private void DrawWarship(Graphics gr)
{
//todo
int width = _pictureWidth / _placeSizeWidth;
int height = _pictureHeight / _placeSizeHeight;
int i= 0;

View File

@ -1,4 +1,5 @@
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;