From 9f26386283c43266baa8c5e2ab4265dfc2049c36 Mon Sep 17 00:00:00 2001 From: antallusion Date: Sun, 5 Apr 2026 03:23:21 +0300 Subject: [PATCH] Create LiteMainWindow.xaml.cs code-behind file --- v2rayN/Views/LiteMainWindow.xaml.cs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 v2rayN/Views/LiteMainWindow.xaml.cs diff --git a/v2rayN/Views/LiteMainWindow.xaml.cs b/v2rayN/Views/LiteMainWindow.xaml.cs new file mode 100644 index 00000000..bf6eae0b --- /dev/null +++ b/v2rayN/Views/LiteMainWindow.xaml.cs @@ -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 + } +} \ No newline at end of file