implemented search artists in MusicBrainz

This commit is contained in:
2026-08-17 01:10:30 +02:00
parent b02feb0b9f
commit 2d12ec2818
11 changed files with 419 additions and 30 deletions
+18 -12
View File
@@ -1,17 +1,6 @@
using Microsoft.UI.Xaml;
using Microsoft.UI.Xaml.Controls;
using Microsoft.UI.Xaml.Controls.Primitives;
using Microsoft.UI.Xaml.Data;
using Microsoft.UI.Xaml.Input;
using Microsoft.UI.Xaml.Media;
using Microsoft.UI.Xaml.Navigation;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices.WindowsRuntime;
using Windows.Foundation;
using Windows.Foundation.Collections;
using Windows.System;
// To learn more about WinUI, the WinUI project structure,
// and more about our project templates, see: http://aka.ms/winui-project-info.
@@ -27,5 +16,22 @@ namespace HarmonyWinUI.Pages
{
InitializeComponent();
}
private void SearchBox_KeyDown(object sender, KeyRoutedEventArgs e)
{
if (e.Key == VirtualKey.Enter)
{
string searchText = SearchBox.Text;
Search(searchText);
}
}
private void Search(string searchText)
{
// Implement your search logic here
// For example, you can navigate to a search results page or filter a list of items
System.Diagnostics.Debug.WriteLine($"Searching for: {searchText}");
Frame.Navigate(typeof(Search), searchText);
}
}
}