📄 frmwarrantlend.cs
字号:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using property.control.warrantInfo;
namespace property.view.WarrantInfo
{
public partial class frmWarrantLend : Form
{
public frmWarrantLend()
{
InitializeComponent();
}
private void frmWarrantLend_Load(object sender, EventArgs e)
{
GetWarInfo getWinfo = new GetWarInfo();
int p_int_Select = getWinfo.GetCount();
if (p_int_Select == 1)
{
MessageBox.Show("还没有通过审核的记录\n" + "请审核凭证后再结算", "结算提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
return;
}// end block if
{
string P_str_balnd = getWinfo.GetWarrbalance();//调用结算方法
if (P_str_balnd == "updateOk")
{
MessageBox.Show("结算完毕\n" + "请继续操作", "结算提示",MessageBoxButtons.OK, MessageBoxIcon.Information);
return;
}// mendthod
}//end block
}
private void groupBox1_Enter(object sender, EventArgs e)
{
}// end block if
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -