當前位置: 首頁>>代碼示例>>C#>>正文


C# SettingsSP.SettingsGetId方法代碼示例

本文整理匯總了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")
                     {
//.........這裏部分代碼省略.........
開發者ID:jsoques,項目名稱:openmiracle,代碼行數:101,代碼來源:frmSettings.cs


注:本文中的Open_Miracle.SettingsSP.SettingsGetId方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。