BoldDesk®Customer service software offering ticketing, live chat, and omnichannel support, starting at $49/mo. for 10 agents. Try it for free.
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);
}
} |