Create LiteMainWindow.xaml.cs code-behind file

This commit is contained in:
antallusion 2026-04-05 03:23:21 +03:00
parent 2887a09d03
commit 9f26386283

View file

@ -0,0 +1,16 @@
// This is the code-behind for the LiteMainWindow.xaml
using System.Windows;
namespace v2rayN.Views
{
public partial class LiteMainWindow : Window
{
public LiteMainWindow()
{
InitializeComponent();
}
// Add your code here
}
}