mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
23 lines
545 B
C#
23 lines
545 B
C#
using System;
|
|
using Avalonia.Controls;
|
|
using Avalonia.Interactivity;
|
|
using Flow.Launcher.Infrastructure.UserSettings;
|
|
using ModernWpf.Media.Animation;
|
|
using PropertyChanged;
|
|
|
|
namespace Flow.Launcher
|
|
{
|
|
[DoNotNotify]
|
|
public partial class WelcomeWindow : Window
|
|
{
|
|
private readonly Settings settings;
|
|
|
|
public WelcomeWindow(Settings settings)
|
|
{
|
|
DataContext = new ViewModel.WelcomeWindowViewModel(settings);
|
|
|
|
InitializeComponent();
|
|
this.settings = settings;
|
|
}
|
|
}
|
|
}
|