BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
public class ReceiptDetType : INotifyPropertyChanged
{
private string feeAbstract;
{
get
{
return feeAbstract;
}
set
{
feeAbstract = value;
OnPropertyChanged("FeeAbstract");
}
}
public event PropertyChangedEventHandler PropertyChanged;
private void OnPropertyChanged(string propertyName)
{
if (PropertyChanged != null)
this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
}
} |
void dgvEditReceipts_CurrentCellValidated(object sender, Syncfusion.WinForms.DataGrid.Events.CurrentCellValidatedEventArgs e)
{
var feePriceSV = SummaryCreator.GetSummaryDisplayText(dgvEditReceipts.View.Records.TableSummaries[0], "FeePrice", dgvEditReceipts.View);
var taxPriceSV = SummaryCreator.GetSummaryDisplayText(dgvEditReceipts.View.Records.TableSummaries[0], "TaxPrice", dgvEditReceipts.View);
} |