public void AddNewBluetoothTag(Point position)
        {
            String mac = MacGenerator.GenerateRandomMAC();
            BluetoothTagDisplay tag = new BluetoothTagDisplay(backgr, mainWindow, mac, position, this);

            tags.Add(tag);
        }
 public void AddNewBluetoothTag(Point position)
 {
     String mac = MacGenerator.GenerateRandomMAC();
     BluetoothTagDisplay tag = new BluetoothTagDisplay(backgr, mainWindow, mac, position, this);
     tags.Add(tag);
 }