- tweak: Favorite button
This commit is contained in:
18
Nebula.Launcher/Views/Popup/AddFavoriteView.axaml.cs
Normal file
18
Nebula.Launcher/Views/Popup/AddFavoriteView.axaml.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using Avalonia.Controls;
|
||||
using Nebula.Launcher.ViewModels.Popup;
|
||||
|
||||
namespace Nebula.Launcher.Views.Popup;
|
||||
|
||||
public partial class AddFavoriteView : UserControl
|
||||
{
|
||||
public AddFavoriteView()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
public AddFavoriteView(AddFavoriteViewModel viewModel)
|
||||
: this()
|
||||
{
|
||||
DataContext = viewModel;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user