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 class CustomAnnotationView : MKAnnotationView | |
{ | |
public Item CurrentData {get;set;} | |
public TipCategory CurrentCategory {get;set;} | |
UIImageView imgMarker; | |
UILabel lblTitle; | |
UIButton btnGoTodetail; | |
MKMapView mapView; | |
public CustomAnnotationView (MKMapView map, Item it, TipCategory cat) |
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
//Create a renderer for the viewcell | |
public class CustomCell : ViewCellRenderer | |
{ | |
protected override global::Android.Views.View GetCellCore (Cell item, global::Android.Views.View convertView, ViewGroup parent, Context context) | |
{ | |
var cell = base.GetCellCore (item, convertView, parent, context); | |
(cell as ViewGroup).DescendantFocusability = DescendantFocusability.BlockDescendants; | |
return cell; | |
} | |
} |
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
Process: XamarinStudio [2285] | |
Path: /Applications/Xamarin Studio.app/Contents/MacOS/XamarinStudio | |
Identifier: com.xamarin.monodevelop | |
Version: 5.5.4.14 (5.5.4.14) | |
Code Type: X86 (Native) | |
Parent Process: ??? [1] | |
Responsible: XamarinStudio [2285] | |
User ID: 501 | |
Date/Time: 2014-11-18 10:45:04.684 +0000 |
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
const uint DEFAULT_SCRIM_COLOR = 0x99000000; | |
unchecked | |
{ | |
SetScrimColor ((int)DEFAULT_SCRIM_COLOR); | |
} |
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
Building: emptyUnified (Debug|iPhoneSimulator) | |
Build started 11/25/2014 4:15:22 PM. | |
__________________________________________________ | |
Project "/Users/rmarinho/Projects/emptyUnified/emptyUnified/emptyUnified.csproj" (Build target(s)): | |
Target PrepareForBuild: | |
Configuration: Debug Platform: iPhoneSimulator | |
Target _DetectSdkLocations: |
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
Process: emptyUnified [4274] | |
Path: /Users/USER/Library/Developer/CoreSimulator/Devices/21A16733-4D76-4213-88CD-A53AB0C5C25B/data/Applications/A1346C22-24E2-45EA-AFEE-C7E8086D4CEA/emptyUnified.app/emptyUnified | |
Identifier: emptyUnified | |
Version: ??? | |
Code Type: X86 (Native) | |
Parent Process: launchd_sim [3644] | |
Responsible: launchd_sim [3644] | |
User ID: 501 | |
Date/Time: 2014-11-25 16:23:19.719 +0000 |
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
at System.IO.FileStream..ctor (System.String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, Boolean anonymous, FileOptions options) [0x0034b] in /Developer/MonoTouch/Source/mono/mcs/class/corlib/System.IO/FileStream.cs:320 | |
at System.IO.FileStream..ctor (System.String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, Boolean isAsync, Boolean anonymous) [0x00000] in /Developer/MonoTouch/Source/mono/mcs/class/corlib/System.IO/FileStream.cs:190 | |
at System.IO.IsolatedStorage.IsolatedStorageFileStream..ctor (System.String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, System.IO.IsolatedStorage.IsolatedStorageFile isf) [0x00000] in /Developer/MonoTouch/Source/mono/mcs/class/corlib/System.IO.IsolatedStorage/IsolatedStorageFileStream.cs:129 | |
at System.IO.IsolatedStorage.IsolatedStorageFileStream..ctor (System.String path, FileMode mode, FileAccess access, System.IO.IsolatedStorage.IsolatedStorageFile isf) [0x00000] in /Developer/ |
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
ommand: "D:\home\site\deployments\tools\deploy.cmd" | |
Handling ProjectK Web Application deployment. | |
KRE-svr50-x86.1.0.0-alpha3 already installed. | |
Adding C:\DWASFiles\Sites\~1dn90\UserProfile\.kre\packages\KRE-svr50-x86.1.0.0-alpha3\bin to process PATH | |
Restoring packages for D:\home\site\repository\src\DN90\project.json | |
---------- | |
System.AggregateException: One or more errors occurred. ---> Newtonsoft.Json.JsonReaderException: Error parsing comment. Expected: *, got /. Path 'dependencies.Microsoft.AspNet.Mvc', line 9, position 10. | |
at Newtonsoft.Json.JsonTextReader.ParseComment() | |
at Newtonsoft.Json.JsonTextReader.ParseObject() | |
at Newtonsoft.Json.JsonTextReader.ReadInternal() |
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 Page GetMainPage () | |
{ | |
var root = new StackLayout (); | |
for (double i = 1; i < 50; i+=0.5) { | |
var font = Font.SystemFontOfSize (i); | |
root.Children.Add(new Label{ Font = font, Text =string.Format("Text with FontSize {0}",i)} ); | |
} |
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
class Demopage : ContentPage | |
{ | |
public Demopage () | |
{ | |
Label label1 = new Label | |
{ | |
Text = "Label11", | |
Font = Font.BoldSystemFontOfSize(50), | |
HorizontalOptions = LayoutOptions.Center | |
}; |