frmdetailsviewtestsproc.cs
来自「< SQL Server2005程序设计>」· CS 代码 · 共 34 行
CS
34 行
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace Chapter08
{
public partial class frmDetailsViewTestSproc : Form
{
public frmDetailsViewTestSproc()
{
InitializeComponent();
}
private void currencyBindingNavigatorSaveItem_Click(object sender, EventArgs e)
{
this.Validate();
this.currencyBindingSource.EndEdit();
this.currencyTableAdapter.Update(this.adventureWorks.Currency);
}
private void frmDetailsViewTestSproc_Load(object sender, EventArgs e)
{
// TODO: This line of code loads data into the 'adventureWorks.Currency' table. You can move, or remove it, as needed.
this.currencyTableAdapter.Fill(this.adventureWorks.Currency);
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?