VideoConcat/Views/MainWindow.xaml.cs
2025-01-11 21:43:03 +08:00

30 lines
640 B
C#

using System.Windows;
namespace VideoConcat.Views
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
private void BtnExit_Click(object sender, RoutedEventArgs e)
{
this.Close();
}
private void BtnLogin_Click(object sender, RoutedEventArgs e)
{
if (Username.Text == "admin" && Password.Password == "123456")
{
}
new Video().Show();
}
}
}