exam/WinFormsApp3/LoginForm.cs
2026-05-15 12:01:42 +04:00

31 lines
614 B
C#

using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using WinFormsApp3.Models;
using static System.Windows.Forms.VisualStyles.VisualStyleElement;
namespace WinFormsApp3
{
public partial class LoginForm : Form
{
public LoginForm()
{
InitializeComponent();
}
private async void button1_Click(object sender, EventArgs e)
{
}
}
}