View App.cs
This file contains 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 System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using Xamarin.Forms; | |
namespace CdonApp | |
{ | |
public class App : Application |
View Program.cs
This file contains 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
public partial class Program | |
{ | |
void ProgramStarted() | |
{ | |
Debug.Print("Program Started"); | |
button.ButtonPressed += button_ButtonPressed; | |
} | |
void button_ButtonPressed(Button sender, Button.ButtonState state) |
View CdonPage.xaml.cs
This file contains 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 System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
using Xamarin.Forms; | |
namespace CdonApp | |
{ | |
public partial class CdonPage : ContentPage |
View CdonPage.xaml
This file contains 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"?> | |
<ContentPage | |
xmlns="http://xamarin.com/schemas/2014/forms" | |
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" | |
x:Class="CdonApp.CdonPage" | |
Padding="0, 30, 0, 0" | |
BackgroundColor="#5F328F"> | |
<ContentPage.Content> | |
<StackLayout> | |
<Image Source="cdonwhite.png"></Image> |
View AdMediatorControlXaml.xaml
This file contains 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
<WindowsPhone81:AdMediatorControl | |
x:Name="AdMediator_Block" | |
HorizontalAlignment="Left" | |
Height="66" | |
Id="AdMediator-Id-unique-id-is-here" | |
Margin="0,100,0,0" | |
VerticalAlignment="Top" | |
Width="400"/> |
View MainPage.xaml.cs
This file contains 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 System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Net; | |
using System.Windows; | |
using System.Windows.Controls; | |
using System.Windows.Navigation; | |
using Microsoft.Phone.Controls; | |
using Microsoft.Phone.Shell; | |
using Phone8AppWithMediation.Resources; |
View bs3-snippet.html
This file contains 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
<div class="col-xs-6 col-sm-6 col-md-6 col-lg-6"> | |
</div> |
View condition.cs
This file contains 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.score.score > 300 |
View enemy-part.cs
This file contains 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
// Increase the score by 100 points | |
score.score += 100; |
View audio.js
This file contains 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
document.getElementById("playBtn") | |
.addEventListener("click", function(){ | |
var media = new Media( | |
"/android_asset/www/sample.mp3", | |
function(){ | |
console.log("success"); | |
}, | |
function(err){ | |
console.log("fail"); | |
} |
NewerOlder