Thread ID: |
Created: |
Updated: |
Platform: |
Replies: |
149320 | Nov 21,2019 03:27 PM UTC | Dec 13,2019 11:30 AM UTC | WPF | 3 |
![]() |
Tags: SfDataGrid |
this.dataGrid.CellTapped += DataGrid_CellTapped;
private void DataGrid_CellTapped(object sender, Syncfusion.UI.Xaml.Grid.GridCellTappedEventArgs e)
{
if (e.Column.MappingName == "Country")
{
string text = e.Record.GetType().GetProperty(e.Column.MappingName).GetValue(e.Record).ToString();
if (text.Length > 0)
Clipboard.SetText(text);
}
} |
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.