private async void ContentDialog_PrimaryButtonClick(ContentDialog sender, ContentDialogButtonClickEventArgs args)
        {
            var stream = await QRGrid.RenderToRandomAccessStream();

            Sharing share = new Sharing();

            share.Show(await Save(stream));
        }
Exemplo n.º 2
0
 private void ActualizarQRView(QueryResult tables)
 {
     QRGrid.Clear();
     QRGrid.View = View.Details;
     AddColumnsToView(tables.Fields);
     AddResultsRows(tables);
     UpdateColumnsWidth(QRGrid);
     QRGrid.Update();
 }