本文整理汇总了C#中Open_Miracle.SettingsSP.SettingsGetId方法的典型用法代码示例。如果您正苦于以下问题:C# SettingsSP.SettingsGetId方法的具体用法?C# SettingsSP.SettingsGetId怎么用?C# SettingsSP.SettingsGetId使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Open_Miracle.SettingsSP
的用法示例。
在下文中一共展示了SettingsSP.SettingsGetId方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: SaveOrEdit
/// <summary>
/// Save or edit function,checking the invalid entries here
/// </summary>
public void SaveOrEdit()
{
SettingsSP spSettings = new SettingsSP();
SettingsInfo infoSettings = new SettingsInfo();
try
{
foreach (Control ctrl in this.Controls)
{
if (ctrl is CheckBox)
{
CheckBox cb = (CheckBox)ctrl;
strControlls = cb.Text.Replace(" ", string.Empty);
if (cb.Checked)
{
infoSettings.Status = strTrue;
infoSettings.SettingsId = spSettings.SettingsGetId(strControlls);
if (cb.Text == "Tax")
{
formMDI.MDIObj.taxToolStripMenuItem.Enabled = true;
}
if (cb.Text == "Budget")
{
formMDI.MDIObj.budgetToolStripMenuItem.Enabled = true;
}
if (cb.Text == "Payroll")
{
formMDI.MDIObj.payrollToolStripMenuItem.Enabled = true;
formMDI.MDIObj.payrollToolStripMenuItem1.Enabled = true;
foreach (ToolStripMenuItem toolItem in formMDI.MDIObj.payrollToolStripMenuItem1.DropDownItems)
{
toolItem.Enabled = true;
}
}
if (cb.Text == "Multi Currency")
{
formMDI.MDIObj.currencyToolStripMenuItem.Enabled = true;
}
if (cb.Text == "Allow Batch")
{
formMDI.MDIObj.batchToolStripMenuItem.Enabled = true;
}
if (cb.Text == "Allow Size")
{
formMDI.MDIObj.sizeToolStripMenuItem.Enabled = true;
}
if (cb.Text == "Allow Godown")
{
formMDI.MDIObj.godownToolStripMenuItem.Enabled = true;
if (cbxAllowRack.Checked)
{
formMDI.MDIObj.rackToolStripMenuItem.Enabled = true;
}
}
if (cb.Text == "Allow Rack")
{
formMDI.MDIObj.rackToolStripMenuItem.Enabled = true;
}
if (cb.Text == "Allow Model No")
{
formMDI.MDIObj.modelNumberToolStripMenuItem.Enabled = true;
}
}
else
{
infoSettings.Status = strFalse;
infoSettings.SettingsId = spSettings.SettingsGetId(strControlls);
if (cb.Text == "Tax")
{
formMDI.MDIObj.taxToolStripMenuItem.Enabled = false;
}
if (cb.Text == "Budget")
{
formMDI.MDIObj.budgetToolStripMenuItem.Enabled = false;
}
if (cb.Text == "Payroll")
{
formMDI.MDIObj.payrollToolStripMenuItem.Enabled = false;
formMDI.MDIObj.payrollToolStripMenuItem1.Enabled = false;
foreach (ToolStripMenuItem toolItem in formMDI.MDIObj.payrollToolStripMenuItem1.DropDownItems)
{
toolItem.Enabled = false;
}
}
if (cb.Text == "MultiCurrency")
{
formMDI.MDIObj.currencyToolStripMenuItem.Enabled = false;
}
if (cb.Text == "Allow Batch")
{
formMDI.MDIObj.batchToolStripMenuItem.Enabled = false;
}
if (cb.Text == "Allow Size")
{
formMDI.MDIObj.sizeToolStripMenuItem.Enabled = false;
}
if (cb.Text == "Allow Godown")
{
//.........这里部分代码省略.........