📄 form5.cs
字号:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace 图书馆管理系统
{
public partial class Form5 : Form
{
public Form5()
{
InitializeComponent();
}
private void Form5_Load(object sender, EventArgs e)
{
// TODO: 这行代码将数据加载到表“pubsDataSet6.users”中。您可以根据需要移动或移除它。
this.usersTableAdapter.Fill(this.pubsDataSet6.users);
// TODO: 这行代码将数据加载到表“pubsDataSet2.users”中。您可以根据需要移动或移除它。
}
private void button2_Click(object sender, EventArgs e)
{
this.Close();
}
private void button1_Click(object sender, EventArgs e)
{
MessageBox.Show(this ," 更新成功!");
}
}
}