コード例 #1
0
ファイル: LogsViewModel.cs プロジェクト: tamifist/SynTau
        private void LogAction(string msg)
        {
            Device.BeginInvokeOnMainThread(async() =>
            {
                var log = new Log()
                {
                    Message = msg
                };
                Items.Insert(0, log);

                await logTable.UpsertItemAsync(log);
            });
        }