+------------+-------------------+--------+
| *M* or *m* | moveto | (x y)+ |
+------------+-------------------+--------+
| *Z* or *z* | close path | (none) |
+------------+-------------------+--------+
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
| var ko = require('knockout'); | |
| ko.components.register('simple-name', require('./components/simple-name/simple-name.js')); | |
| ko.applyBindings({ userName: ko.observable() }); |
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 Xamarin.Forms; | |
| using System.Reflection; | |
| using System.Runtime.CompilerServices; | |
| using Xamarin.Forms.Xaml; | |
| var xaml = @"<?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=""XamlSamples.HelloXamlPage"" | |
| Title=""Hello XAML Page"" |
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
| // | |
| // Badge.cs | |
| // Created by Alexey Kinev on 19 Jan 2015. | |
| // | |
| // Licensed under The MIT License (MIT) | |
| // http://opensource.org/licenses/MIT | |
| // | |
| // Copyright (c) 2015 Alexey Kinev <[email protected]> | |
| // | |
| using System; |
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
| <!-- | |
| Download and copy this file to ~/Library/XamarinStudio-VERSION/Snippets | |
| In a .cs file, type "bprop" and TAB to insert the code for a bindable property | |
| --> | |
| <?xml version="1.0" encoding="utf-8"?> | |
| <CodeTemplates version="3.0"> | |
| <CodeTemplate version="2.0"> | |
| <Header> | |
| <_Group>C#</_Group> | |
| <Version /> |
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
| [assembly: ExportRenderer(typeof(ContentPage), typeof(ExtendedPageRenderer))] | |
| public class ExtendedPageRenderer : PageRenderer | |
| { | |
| public override void ViewWillAppear(bool animated) | |
| { | |
| base.ViewWillAppear(animated); | |
| var contentPage = this.Element as ContentPage; | |
| if (contentPage == null || NavigationController == 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
| package com.quinn.xmpp.ui.widget; | |
| import android.content.Context; | |
| import android.graphics.Canvas; | |
| import android.graphics.Paint; | |
| import android.graphics.drawable.Drawable; | |
| import android.support.v7.widget.RecyclerView; | |
| import android.view.View; | |
| import com.quinn.xmpp.R; |
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
| * { | |
| font-size: 12pt; | |
| font-family: monospace; | |
| font-weight: normal; | |
| font-style: normal; | |
| text-decoration: none; | |
| color: black; | |
| cursor: default; | |
| } |
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
| // Licensed by Daniel Cazzulino under the MIT License | |
| using System; | |
| using System.Collections; | |
| using System.Collections.Generic; | |
| using System.Collections.Specialized; | |
| using System.ComponentModel; | |
| using System.Diagnostics; | |
| using System.Dynamic; | |
| using System.Linq; | |
| using System.Text; |