本文整理汇总了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;
}
示例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;
}
示例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.");
}
}
}
}
示例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;
}
}
示例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];
}
}
}