//###########################_Десериализаци, Сериализация_###################################

        private void btnDESerial_Click(object sender, RoutedEventArgs e)
        {
            foreach (var i in PlanesSerializer.Deserialize("planes.xml"))
            {
                var plane = new Plane(myCanvas, imageRow, imageColumn, this, i);
                planeList.Add(plane);
            }

            planeCountLabel.Content = "Зон обнаружения: " + planeList.Count;
        }
 private void btnSerial_Click(object sender, RoutedEventArgs e)
 {
     PlanesSerializer.Serialize(planeList, "planes.xml");
 }