- Go to https://notebooks.azure.com
- Sign in using the same account you used for your Azure subscription
- Create a username or accept the generated one
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nint taskId = -1; | |
Task savingChoiceTask; | |
public async override void DidEnterBackground (UIApplication app) | |
{ | |
Logger.Log ("DidEnterBackground() - entered background"); | |
// Begin Finite-Length Task. | |
this.taskId = app.BeginBackgroundTask (null); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Android.App; | |
using Android.Runtime; | |
using Android.Views; | |
using Android.Widget; | |
using Android.OS; | |
using Android.Support.V4.View; | |
using Android.Graphics; | |
namespace Clock | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This file has been autogenerated from a class added in the UI designer. | |
using System; | |
using Foundation; | |
using UIKit; | |
using Mailbox; | |
using CoreGraphics; | |
namespace ios110 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<primitives:RadSideDrawer x:Name="drawer"> | |
<primitives:RadSideDrawer.DrawerLength> | |
<OnPlatform x:TypeArguments="x:Double" | |
Android="600" | |
iOS="200" /> | |
</primitives:RadSideDrawer.DrawerLength> | |
<primitives:RadSideDrawer.MainContent> | |
<maps:Map x:Name="MyMap" | |
HeightRequest="200" | |
IsShowingUser="true" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<ContentView xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" | |
x:Class="Xexpo.LoginPage" | |
> | |
<Grid> | |
<Image Source="rainBus.jpg" Aspect="AspectFill"/> | |
<ScrollView> | |
<Grid Padding="20, 30, 20, 20" RowSpacing="20"> | |
<Grid.RowDefinitions> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* reset */ | |
body .wc-app, .wc-app button, .wc-app input, .wc-app textarea { | |
font-family: "Segoe UI", sans-serif; | |
font-size: 15px; } | |
.wc-app button { | |
background-color: #001548; | |
border: 1px solid #cccccc; | |
border-radius: 1px; | |
color: #ffffff; |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function webpackUniversalModuleDefinition(root, factory) { | |
if(typeof exports === 'object' && typeof module === 'object') | |
module.exports = factory(); | |
else if(typeof define === 'function' && define.amd) | |
define([], factory); | |
else if(typeof exports === 'object') | |
exports["BotChat"] = factory(); | |
else | |
root["BotChat"] = factory(); | |
})(this, function() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// Use IntelliSense to learn about possible attributes. | |
// Hover to view descriptions of existing attributes. | |
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Run Android on device", | |
"type": "cordova", | |
"request": "launch", |
OlderNewer