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
Windows.ApplicationModel.Activation.FileOpenPickerContinuationEventArgs | |
Windows.ApplicationModel.Activation.FileSavePickerContinuationEventArgs | |
Windows.ApplicationModel.Activation.FolderPickerContinuationEventArgs | |
Windows.ApplicationModel.Activation.IContinuationActivatedEventArgs | |
Windows.ApplicationModel.Activation.IFileOpenPickerContinuationEventArgs | |
Windows.ApplicationModel.Activation.IFileSavePickerContinuationEventArgs | |
Windows.ApplicationModel.Activation.IFolderPickerContinuationEventArgs | |
Windows.ApplicationModel.Activation.IWebAccountProviderActivatedEventArgs | |
Windows.ApplicationModel.Activation.IWebAccountProviderContinuationEventArgs | |
Windows.ApplicationModel.Activation.WebAccountProviderActivatedEventArgs |
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
Package Description | |
Google Play services, revision 4 | |
By Google Inc. | |
Google Play Services client library and sample code | |
Install path: extras/google/google_play_services |
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
// These classes would go in your PCL | |
public interface IWrappedCollectionView | |
{ | |
bool MoveCurrentTo(object item); | |
bool MoveCurrentToPosition(int position); | |
bool IsCurrentAfterLast { get; } | |
bool MoveCurrentToFirst(); | |
bool IsCurrentBeforeFirst { get; } | |
bool MoveCurrentToLast(); |
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 System; | |
using Cirrious.MvvmCross.Binding.Droid.Views; | |
using System.Linq; | |
using Android.Content; | |
using System.Collections.Generic; | |
using System.Collections; | |
using System.Collections.Specialized; | |
namespace Cirrious.MvvmCross.Binding.Droid.Views | |
{ |
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
public static class Extensions | |
{ | |
public static UIImage ToImage (this UIView view) | |
{ | |
RectangleF canvasRect = view.Bounds; | |
UIGraphics.BeginImageContextWithOptions (canvasRect.Size, false, 0.0f); | |
CGContext ctx = UIGraphics.GetCurrentContext (); | |
ctx.FillRect (canvasRect); | |
view.Layer.RenderInContext (ctx); |
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 System; | |
using ClanceysLib; | |
using MonoTouch.UIKit; | |
using MonoTouch.Foundation; | |
using System.Threading; | |
using MonoTouch.ObjCRuntime; | |
using System.Drawing; | |
using MonoTouch.CoreGraphics; | |
using System.Linq; | |
namespace Clanceylib |
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"?> | |
<LinearLayout | |
xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:local="http://schemas.android.com/apk/res/Tutorial.UI.Droid" | |
android:layout_width="fill_parent" | |
android:layout_height="fill_parent" | |
android:orientation="vertical" | |
> | |
<include | |
android:id="@+id/videoRecorder" |
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
private sealed class AppDomain | |
{ | |
public static AppDomain CurrentDomain { get; private set; } | |
static AppDomain() | |
{ | |
CurrentDomain = new AppDomain(); | |
} | |
public Assembly[] GetAssemblies() |