Arrow button func,progress bar

This commit is contained in:
Elias Quinn
2025-06-17 12:42:39 +01:00
parent 9534ed3a8a
commit 40270573ab
49 changed files with 2288 additions and 446 deletions

View File

@@ -33,13 +33,15 @@ public class Item
{
Content = isFoto ? "Show" : "Play",
HorizontalAlignment = HorizontalAlignment.Center,
Tag = path+"/"+type // Store path or any identifier
Tag = path+"||"+type // Store path or any identifier
};
if (clickHandler != null)
playButton.Click += clickHandler;
this.isFoto = isFoto;
Console.WriteLine(path);
}
@@ -69,5 +71,10 @@ public class Item
{
return type;
}
public Button getPlayButton()
{
return playButton;
}
}