📄 clinicscheduleform.cs
字号:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace HPIResource.Register
{
public partial class ClinicScheduleForm : Form
{
public ClinicSchedule csData;
public ClinicScheduleForm()
{
InitializeComponent();
}
private void btn_Close_Click(object sender, EventArgs e)
{
this.Close();
}
private void ClinicScheduleForm_Load(object sender, EventArgs e)
{
WindowState = FormWindowState.Maximized;
csData = new ClinicSchedule("L");
dw_1.LibraryList = csData.LibraryList;
dw_1.DataWindowObject = csData.DataWindowObject;
csData.ShareData(dw_1);
csData.SetDataAsModel();
csData.Retrieve();
}
private void dw_1_RowFocusChanged(object sender, Sybase.DataWindow.RowFocusChangedEventArgs e)
{
dw_1.SelectRow(0, false);
dw_1.SelectRow(e.RowNumber, true);
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -