当前位置: 首页>>代码示例>>C#>>正文


C# UltraGridRow.GetCellValue方法代码示例

本文整理汇总了C#中UltraGridRow.GetCellValue方法的典型用法代码示例。如果您正苦于以下问题:C# UltraGridRow.GetCellValue方法的具体用法?C# UltraGridRow.GetCellValue怎么用?C# UltraGridRow.GetCellValue使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在UltraGridRow的用法示例。


在下文中一共展示了UltraGridRow.GetCellValue方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: ShouldCellsBeMerged

 public bool ShouldCellsBeMerged(UltraGridRow row1,UltraGridRow row2, UltraGridColumn column)
 {
     // Test to make sure the Type is not DBNull since we allow the ShippedDate to be null
     if (row1.GetCellValue(column).GetType().ToString() != "System.DBNull" && row2.GetCellValue(column).GetType().ToString() != "System.DBNull")
     {
         string value1 = row1.GetCellValue(column).ToString();
         string value2 = row2.GetCellValue(column).ToString();
         // Merge cells according to the date portions of the underlying DateTime cell
         // values, ignoring any time portion. For example, "1/1/2004 10:30 AM" will be
         //  merged with "1/1/2004 1:15 AM" since the dates are the same.
         return value1.Equals(value2);
     }
     else
         return false;
 }
开发者ID:jimidzj,项目名称:Inspect,代码行数:15,代码来源:CustomMergedCellEvaluator.cs

示例2: delete

        private bool delete(UltraGridRow row)
        {
            if (CommonMessages.DisplayConfirm("Sei sicuro di voler eliminare la attività?") == DialogResult.Yes)
            {
                var idAttivita = row.GetCellValue("ID") as int?;
                if (idAttivita != null && idAttivita > 0)
                {
                    if (row.Delete(false))
                    {
                        getPraticaService().DeleteAttivita(idAttivita.Value);
                        return true;
                    }
                }
            }

            return false;
        }
开发者ID:gipasoft,项目名称:Sfera,代码行数:17,代码来源:ListaAttivitaUC.cs

示例3: chiusuraPratica

        private void chiusuraPratica(UltraGridRow row)
        {
            var idPratica = row.GetCellValue("Id") as int?;
            if (idPratica != null)
            {
                if (CommonMessages.DisplayConfirm("Sei sicuro di voler chiudere la pratica?") == DialogResult.Yes)
                {
                    if (idPratica > 0)
                    {
                        if (row.GetCellValue("StatoPratica").ToString().Equals("Aperta"))
                        {
                            string message = _praticaService.Chiusura(idPratica.GetValueOrDefault());
                            if (string.IsNullOrEmpty(message))
                            {
                                reloadData();
                                CommonMessages.DisplayWarning("La chiusura della pratica è avvenuta correttamente");
                            }
                            else
                            {
                                CommonMessages.DisplayWarning("Si è verificato un errore. " + message);
                            }

                        }
                        else
                            MessageBox.Show(@"La pratica selezionata è già stata chiusa.");
                    }
                }
            }
        }
开发者ID:gipasoft,项目名称:Sfera,代码行数:29,代码来源:PraticheUI.cs

示例4: rowLayout

        private void rowLayout(UltraGridRow row)
        {
            try
            {
                if (row != null && row.IsDataRow)
                {
                    if (row.Cells.Exists("StatoAttivita") &&row.GetCellValue("StatoAttivita") != null && row.GetCellValue("StatoAttivita").ToString() == "Aperta")
                    {
                        var dataFine = row.GetCellValue("DataFinePrevista") as DateTime?;
                        if (dataFine != null && dataFine.GetValueOrDefault() < DateTime.Now)
                        {
                            row.Appearance.BackColor = Color.White;
                            row.Appearance.ForeColor = Color.Red;
                        }
                    }

                    row.Appearance.FontData.Bold = !(row.Cells.Exists("Letta") && row.GetCellValue("Letta") != null && (bool)row.GetCellValue("Letta")) ? DefaultableBoolean.True : DefaultableBoolean.Default;
                }
            }
            catch (Exception ex)
            {
                _log.ErrorFormat("Errore nell'impostazione del layot della grid - {0} - azienda:{1}", ex, Utility.GetMethodDescription(), Security.Login.Instance.CurrentLogin().Azienda);                
                throw;
            }
        }
开发者ID:gipasoft,项目名称:Sfera,代码行数:25,代码来源:AttivitaUI.cs

示例5: setEserciziValueList

        private void setEserciziValueList(UltraGridRow row)
        {
            if (row.Band.Index == 0 && row.Band.Columns.Exists("IdCondominio") && row.Band.Columns.Exists("IdEsercizio"))
            {
                var idCondominio = row.GetCellValue("IdCondominio") as int?;
                if (idCondominio != null)
                {
                    var listUniqueKey = "Esercizi_" + row.GetCellValue("IdCondominio");

                    if (listaBollette.DisplayLayout.ValueLists.Exists(listUniqueKey))
                        listaBollette.DisplayLayout.ValueLists.Remove(listUniqueKey);

                    var valueList = DataSourceHelper.GetValueList(_esercizi.Where(item => item.IdCondominio == idCondominio.Value), "ID", "DisplayName", listUniqueKey);
                    valueList.Key = listUniqueKey;
                    listaBollette.DisplayLayout.ValueLists.Add(valueList);
                    row.Cells["IdEsercizio"].ValueList = listaBollette.DisplayLayout.ValueLists[listUniqueKey];
                }
            }
        }
开发者ID:gipasoft,项目名称:Sfera,代码行数:19,代码来源:ImportazioneBolletteUC.cs


注:本文中的UltraGridRow.GetCellValue方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。