大家好,今天继续分享我们的通用方法系列。
下面是今天要分享的通用方法:
(1)这个通用方法为Ug’校验选中体的个数:
/// <summary>
/// 输出选中体个数
/// </summary>
public int CheckOneBody()
{
int selcount = 0;
theUFSession.Ui.AskGlobalSelObjectList(out selcount, out objs);
if (selcount < 1)
{
theUI.NXMessageBox.Show("提示", NXMessageBox.DialogType.Information, "一个体都没有被选中");
return selcount;
}
else if (selcount > 1)
{
theUI.NXMessageBox.Show("提示", NXMessageBox.DialogType.Information, "选中了”+ selcount +”个体");
ok_cb();
return selcount;
}
return selcount;
}
(2)这个通用方法为判断是公制还是英制:
/// <summary>
/// 判断是公制还是英制
/// </summary>
public void GetPartUnit()
{
int returnvalue = 0;
theUFSession.Part.AskUnits(workPart.Tag, out returnvalue);
if(returnvalue!=1)
{
ism = false;
}
}
(3)这个通用方法为datagridview判断是否选中单元格:
/// <summary>
/// datagridview判断是否选中单元格
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void dataGridView2_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
{
int rows=0
if (e.RowIndex != -1 && e.ColumnIndex != -1)
{
if (dataGridView2.CurrentCell != null)
{
Rows=1;
}
}
}
今天要分享的通用方法就是这么多,我们下篇文章再见。
标签:11,总结,通用,selcount,C#,NXMessageBox,int,选中,returnvalue From: https://blog.csdn.net/m0_53104033/article/details/140806342