Thread ID: |
Created: |
Updated: |
Platform: |
Replies: |
146175 | Jul 24,2019 09:13 AM UTC | Jul 29,2019 06:01 AM UTC | WinForms | 6 |
![]() |
Tags: SfDataGrid |
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);
} |
This post will be permanently deleted. Are you sure you want to continue?
Sorry, An error occured while processing your request. Please try again later.
This page will automatically be redirected to the sign-in page in 10 seconds.