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
| async void Main() | |
| { | |
| var content = "Hello, World!"; | |
| var size = QRCodeSize.Large; | |
| var errorCorrection = QRErrorCorrection.H; | |
| var qrUrl = GenerateQRCodeUrl(content, size, errorCorrection); | |
| qrUrl.Dump(); | |
| var image = await GetQRCodeImage(qrUrl); |
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
| Remote build step failed. [C:\ENM\Main\src\prod\Mobile\SetupCompanion\SetupCompanion.iOS\SetupCompanion.iOS.csproj] | |
| Response status: Error [C:\ENM\Main\src\prod\Mobile\SetupCompanion\SetupCompanion.iOS\SetupCompanion.iOS.csproj] | |
| warning MT3005: The dependency 'System.Windows, Version=2.0.5.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e' of the assembly 'Cirrious.CrossCore, Version=1.0.0.0, Culture=neutral, PublicKeyToken=e16445fd9b451819' was not found. Please review the project's references. [C:\ENM\Main\src\prod\Mobile\SetupCompanion\SetupCompanion.iOS\SetupCompanion.iOS.csproj] | |
| warning MT3006: Could not compute a complete dependency map for the project. This will result in slower build times because Xamarin.iOS can't properly detect what needs to be rebuilt (and what does not need to be rebuilt). Please review previous warnings for more details. [C:\ENM\Main\src\prod\Mobile\SetupCompanion\SetupCompanion.iOS\SetupCompanion.iOS.csproj] | |
| warning MT3005: The dependency 'System.Windows, Version=2.0.5.0, C |
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:app="http://schemas.android.com/apk/res-auto" | |
| android:orientation="vertical" | |
| android:layout_width="fill_parent" | |
| android:layout_height="fill_parent"> | |
| <dk.ostebaronen.droid.viewpagerindicator.TitlePageIndicator | |
| android:id="@+id/viewPagerIndicator" | |
| android:padding="10dip" |
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"?> | |
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" android:installLocation="auto" package="dk.ostebaronen.wifishizniz" android:versionCode="1" android:versionName="1.0"> | |
| <uses-sdk android:targetSdkVersion="17" /> | |
| <application android:label="WiFiShizniz"></application> | |
| <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> | |
| <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> | |
| <uses-permission android:name="android.permission.CHANGE_WIFI_STATE" /> | |
| </manifest> |
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.Views; | |
| using Android.Widget; | |
| namespace ListViewWithHeaders.Items | |
| { | |
| public class Header : IItem | |
| { | |
| public string HeaderName { get; set; } | |
| public View GetView(LayoutInflater inflater, View convertView) |
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"?> | |
| <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
| android:layout_width="fill_parent" | |
| android:layout_height="fill_parent"> | |
| <Button | |
| android:id="@+id/MyButton" | |
| android:layout_width="100dp" | |
| android:layout_height="wrap_content" | |
| android:text="Click Me!" /> | |
| <ImageView |
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 override void ViewWillAppear(bool animated) | |
| { | |
| base.ViewWillAppear(animated); | |
| NavigationItem.SetHidesBackButton(true, false); | |
| NavigationController.NavigationBar.SetNeedsDisplay(); | |
| } | |
| public override void ViewDidAppear(bool animated) | |
| { | |
| NavigationItem.SetHidesBackButton(false, 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
| public override bool OnCreateOptionsMenu(IMenu menu) | |
| { | |
| var item = menu.Add(0,1,1,"Back"); | |
| //If you want an icon set it here | |
| item.SetIcon(Resource.drawable.ic_menu_back); | |
| return true; | |
| } | |
| public override bool OnOptionsItemSelected(IMenuItem item) | |
| { |
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.Text; | |
| using Android.Text.Style; | |
| using Android.Widget; | |
| using Android.OS; | |
| namespace MonoDroid.TextViewWithImages | |
| { | |
| [Activity(Label = "Text with Images", MainLauncher = true, Icon = "@drawable/icon")] | |
| public class Activity1 : Activity |
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 System.IO; | |
| using System.Text; | |
| using System.Xml; | |
| using Android.App; | |
| using Android.Widget; | |
| using Android.OS; | |
| namespace MonoDroid.ReadWriteXML | |
| { |