почтии
This commit is contained in:
parent
d1ad010777
commit
ea6a49ba00
@ -20,16 +20,16 @@ namespace HoistingCrane.CollectionGenericObjects
|
|||||||
/// Максимально допустимое число объектов в списке
|
/// Максимально допустимое число объектов в списке
|
||||||
/// </summary>
|
/// </summary>
|
||||||
private int _maxCount;
|
private int _maxCount;
|
||||||
public int Count
|
public int Count
|
||||||
{
|
{
|
||||||
get { return list.Count; }
|
get { return list.Count; }
|
||||||
}
|
}
|
||||||
|
|
||||||
public int SetMaxCount
|
public int SetMaxCount
|
||||||
{
|
{
|
||||||
set
|
set
|
||||||
{
|
{
|
||||||
if(value > 0)
|
if (value > 0)
|
||||||
{
|
{
|
||||||
_maxCount = value;
|
_maxCount = value;
|
||||||
}
|
}
|
||||||
@ -39,11 +39,8 @@ namespace HoistingCrane.CollectionGenericObjects
|
|||||||
public T? Get(int position)
|
public T? Get(int position)
|
||||||
{
|
{
|
||||||
// TODO проверка позиции
|
// TODO проверка позиции
|
||||||
if(position >= 0 && position < _maxCount)
|
if (position >= Count || position < 0) return null;
|
||||||
{
|
return list[position];
|
||||||
return list[position];
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -51,9 +48,9 @@ namespace HoistingCrane.CollectionGenericObjects
|
|||||||
{
|
{
|
||||||
// TODO проверка, что не превышено максимальное количество элементов
|
// TODO проверка, что не превышено максимальное количество элементов
|
||||||
// TODO вставка в конец набора
|
// TODO вставка в конец набора
|
||||||
if (Count == _maxCount)
|
if (Count == _maxCount)
|
||||||
{
|
{
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
list.Add(obj);
|
list.Add(obj);
|
||||||
return Count;
|
return Count;
|
||||||
@ -70,21 +67,18 @@ namespace HoistingCrane.CollectionGenericObjects
|
|||||||
}
|
}
|
||||||
list.Insert(position, obj);
|
list.Insert(position, obj);
|
||||||
return position;
|
return position;
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public T? Remove(int position)
|
public T? Remove(int position)
|
||||||
{
|
{
|
||||||
// TODO проверка позиции
|
// TODO проверка позиции
|
||||||
// TODO удаление объекта из списка
|
// TODO удаление объекта из списка
|
||||||
if(position >= 0 && position < list.Count)
|
if (position >= 0 && position < list.Count)
|
||||||
{
|
{
|
||||||
T? temp = list[position];
|
T? temp = list[position];
|
||||||
list.RemoveAt(position);
|
list.RemoveAt(position);
|
||||||
return temp;
|
return temp;
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -60,5 +60,4 @@ namespace HoistingCrane.CollectionGenericObjects
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -64,9 +64,29 @@ namespace HoistingCrane
|
|||||||
}
|
}
|
||||||
return color;
|
return color;
|
||||||
}
|
}
|
||||||
private void buttonCreateHoistingCrane_Click(object sender, EventArgs e) => CreateObject(nameof(DrawningHoistingCrane));
|
private void buttonCreateHoistingCrane_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
FormCarConfig form = new();
|
||||||
|
form.Show();
|
||||||
|
form.AddEvent(SetCar);
|
||||||
|
}
|
||||||
|
private void SetCar(DrawningTrackedVehicle drawningTrackedVehicle)
|
||||||
|
{
|
||||||
|
if (_company == null || drawningTrackedVehicle == null)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
private void buttonCreateTrackedVehicle_Click(object sender, EventArgs e) => CreateObject(nameof(DrawningTrackedVehicle));
|
if (_company + drawningTrackedVehicle != -1)
|
||||||
|
{
|
||||||
|
MessageBox.Show("Объект добавлен");
|
||||||
|
pictureBox.Image = _company.Show();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
MessageBox.Show("Не удалось добавить объект");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private void buttonDeleteCar_Click(object sender, EventArgs e)
|
private void buttonDeleteCar_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
|
@ -117,11 +117,10 @@ namespace HoistingCrane
|
|||||||
/// <param name="e"></param>
|
/// <param name="e"></param>
|
||||||
private void labelBodyColor_DragDrop(object sender, DragEventArgs e)
|
private void labelBodyColor_DragDrop(object sender, DragEventArgs e)
|
||||||
{
|
{
|
||||||
if (car != null)
|
if (car == null)
|
||||||
{
|
return;
|
||||||
car.EntityTrackedVehicle?.SetBodyColor((Color)e.Data.GetData(typeof(Color)));
|
car.EntityTrackedVehicle?.SetBodyColor((Color)e.Data.GetData(typeof(Color)));
|
||||||
DrawObject();
|
DrawObject();
|
||||||
}
|
|
||||||
}
|
}
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Передача основного цвета
|
/// Передача основного цвета
|
||||||
|
Loading…
Reference in New Issue
Block a user