mirror of
https://github.com/Crunchy-DL/Crunchy-Downloader.git
synced 2026-03-11 17:45:39 +00:00
19 lines
No EOL
450 B
C#
19 lines
No EOL
450 B
C#
using System;
|
|
using Avalonia;
|
|
using Avalonia.Controls;
|
|
using Avalonia.Markup.Xaml;
|
|
using CRD.ViewModels;
|
|
|
|
namespace CRD.Views;
|
|
|
|
public partial class AddDownloadPageView : UserControl{
|
|
public AddDownloadPageView(){
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void Popup_Closed(object? sender, EventArgs e){
|
|
if (DataContext is AddDownloadPageViewModel viewModel){
|
|
viewModel.SearchPopupVisible = false;
|
|
}
|
|
}
|
|
} |