Skip to content

Instantly share code, notes, and snippets.

var clientId = nativeCall ? AppId : ServiceId;
var clientSecret = CreateNewToken(clientId);
string formData = string.Join("&",
new string[]
{
$"client_id={clientId}",
$"code={authCode}",
$"client_secret={clientSecret}",
$"grant_type=authorization_code",
$"redirect_uri={WebUtility.UrlEncode(redirectUri)}"
public MainPage()
{
this.InitializeComponent();
Loaded += MainPage_Loaded;
}
private async void MainPage_Loaded(object sender, RoutedEventArgs e)
{
string url = "https://p.bigstockphoto.com/GeFvQkBbSLaMdpKXF1Zv_bigstock-Aerial-View-Of-Blue-Lakes-And--227291596.jpg";
var file = await Windows.Storage.ApplicationData.Current.LocalFolder.CreateFileAsync("photo.jpg");
public class VerticalGridLayout : UICollectionViewLayout
{
public VerticalGridLayout(
IGridCellMetricProvider gridMetricProvider,
double cellHeight
)
{
_gridMetricProvider = gridMetricProvider;
_cellHeight = cellHeight;
}
@Mogikan
Mogikan / GridLayout.swift
Created July 25, 2017 03:41 — forked from smswz/GridLayout.swift
A simple custom grid UICollectionViewLayout
// MIT License
//
// Copyright (c) 2016 stable|kernel
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions: