示例#1
0
        private async Task UpdateVerticalHeader(object o)
        {
            var newName = await ShowRowNameInput();

            var row = scope.GetSelectedRow(o.ToString());

            if (!string.IsNullOrEmpty(newName))
            {
                row.Name = newName;
                await scope.CreateOrUpdateRowAsync(row);
            }

            await RefreshContent();
        }