mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
14 lines
316 B
C#
14 lines
316 B
C#
|
|
using Avalonia.Controls;
|
||
|
|
using Flow.Launcher.Avalonia.ViewModel.SettingPages;
|
||
|
|
|
||
|
|
namespace Flow.Launcher.Avalonia.Views.SettingPages;
|
||
|
|
|
||
|
|
public partial class ProxySettingsPage : UserControl
|
||
|
|
{
|
||
|
|
public ProxySettingsPage()
|
||
|
|
{
|
||
|
|
InitializeComponent();
|
||
|
|
DataContext = new ProxySettingsViewModel();
|
||
|
|
}
|
||
|
|
}
|