Skip to content

Commit

Permalink
为TestZClient增加注释
Browse files Browse the repository at this point in the history
  • Loading branch information
renyh committed Jan 4, 2023
1 parent 135cc93 commit 2ec6263
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions TestZClient/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,17 @@ namespace TestZClient
{
public partial class Form1 : Form
{
#region 成员
//Z39.50 前端类。维持通讯通道
ZClient _zclient = new ZClient();

//ISBN号分析器,todo isbn需要进行哪些处理?
public IsbnSplitter _isbnSplitter = null;

// todo啥作用?
// 检索途径集合
public UseCollection _useList = new UseCollection();

#endregion

#region 窗体加载和关闭事件里做的事情,以及初始化信息

Expand All @@ -51,6 +53,7 @@ private void Form1_Load(object sender, EventArgs e)
MessageBox.Show(this, result.ErrorInfo);
}

// 窗体关闭时,目前里面没写代码。
private void Form1_FormClosing(object sender, FormClosingEventArgs e)
{

Expand Down Expand Up @@ -458,9 +461,6 @@ void EnableControls(bool bEnable)
SetQueryEnabled(bEnable);
}




// 把marc显示在界面上
void AppendMarcRecords(RecordCollection records,
Encoding encoding,
Expand Down Expand Up @@ -622,7 +622,7 @@ 在 dp2Circulation.QuickChargingForm._setReaderRenderString(String strText) 位

#endregion

#region 界面按钮
#region 界面按钮事件

// 切断通道
private void button_close_Click(object sender, EventArgs e)
Expand Down

0 comments on commit 2ec6263

Please sign in to comment.