/// <summary>
/// 允许或者禁止窗体使用系统查找按钮
/// </summary>
/// <param name="bEnable">允许使用:真;禁止使用:假</param>
public void EnableSearchMenu(Boolean bEnable)
{
oForm.EnableMenu("1281", bEnable);
}
/// 允许或者禁止窗体使用系统查找按钮
/// </summary>
/// <param name="bEnable">允许使用:真;禁止使用:假</param>
public void EnableSearchMenu(Boolean bEnable)
{
oForm.EnableMenu("1281", bEnable);
}
/// <summary>
/// 允许或者禁止窗体使用系统新增按钮
/// </summary>
/// <param name="bEnable">允许使用:真;禁止使用:假</param>
public void EnableAddMenu(Boolean bEnable)
{
oForm.EnableMenu("1282", bEnable);
}
/// 允许或者禁止窗体使用系统新增按钮
/// </summary>
/// <param name="bEnable">允许使用:真;禁止使用:假</param>
public void EnableAddMenu(Boolean bEnable)
{
oForm.EnableMenu("1282", bEnable);
}
/// <summary>
/// 允许或者禁止窗体使用系统导航按钮
/// </summary>
/// <param name="bEnable">允许使用:真;禁止使用:假</param>
public void EnableNavigatorMenu(Boolean bEnable)
{
oForm.EnableMenu("1283", bEnable);
oForm.EnableMenu("1284", bEnable);
oForm.EnableMenu("1285", bEnable);
oForm.EnableMenu("1286", bEnable);
}
/// 允许或者禁止窗体使用系统导航按钮
/// </summary>
/// <param name="bEnable">允许使用:真;禁止使用:假</param>
public void EnableNavigatorMenu(Boolean bEnable)
{
oForm.EnableMenu("1283", bEnable);
oForm.EnableMenu("1284", bEnable);
oForm.EnableMenu("1285", bEnable);
oForm.EnableMenu("1286", bEnable);
}
本文转自foresun 51CTO博客,原文链接:http://blog.51cto.com/foresun/49801,如需转载请自行联系原作者