Now the images are changing

This commit is contained in:
2023-05-11 07:00:50 +02:00
parent 2c1340780e
commit 57028f1fc9
4 changed files with 9 additions and 39 deletions
+3 -3
View File
@@ -154,7 +154,7 @@ namespace Test_Merge
/// </summary>
/// <param name="idImage">The id of the image we are working with</param>
/// <returns>a string representation of all the returns</returns>
public async Task<string> Decode(List<Zone> mainZones,List<string> drivers, Bitmap imageToDecode)
public async Task<string> Decode(List<Zone> mainZones,List<string> drivers)
{
string result = "";
List<DriverData> mainResults = new List<DriverData>();
@@ -192,9 +192,9 @@ namespace Test_Merge
public void ChangeImage(Bitmap Image)
{
foreach (Zone BigZone in MainZones)
foreach (Zone z in MainZones)
{
BigZone.Image = Image;
z.Image = Image;
}
}
/// <summary>