All Projects → stavroskasidis → XamarinClipboardPlugin

stavroskasidis / XamarinClipboardPlugin

Licence: MIT license
Cross Platform Clipboard access for Xamarin

Programming Languages

C#
18002 projects
Batchfile
5799 projects

Projects that are alternatives of or similar to XamarinClipboardPlugin

Prototype.Forms.Controls
This sample app contains a random mixture of Xamarin/Xamarin.Forms controls, views, and functionality snippets that I've created.
Stars: ✭ 21 (-12.5%)
Mutual labels:  xamarin, xamarin-forms, xamarin-ios, xamarin-android, xamarin-plugin, xamarin-library
LaunchMapsPlugin
Launch External Maps Plugin for Xamarin and Windows
Stars: ✭ 49 (+104.17%)
Mutual labels:  xamarin, xamarin-forms, xamarin-ios, xamarin-android, xamarin-plugin
VersionTrackingPlugin
Version Tracking Plugin for Xamarin and Windows
Stars: ✭ 62 (+158.33%)
Mutual labels:  xamarin, xamarin-forms, xamarin-ios, xamarin-android, xamarin-plugin
Connectivityplugin
Connectivity Plugin for Xamarin and Windows
Stars: ✭ 253 (+954.17%)
Mutual labels:  xamarin, xamarin-forms, pcl, xamarin-ios, xamarin-android
Cognitive-Face-Xamarin
A client library that makes it easy to work with the Microsoft Cognitive Services Face API on Xamarin.iOS, Xamarin.Android, and Xamarin.Forms and/or Portable Class Libraries.
Stars: ✭ 18 (-25%)
Mutual labels:  xamarin, xamarin-forms, xamarin-ios, xamarin-android
XamSvg-Samples
Samples for Xamarin Svg enterprise cross platform and full featured Svg image control
Stars: ✭ 25 (+4.17%)
Mutual labels:  xamarin, xamarin-forms, xamarin-ios, xamarin-android
SKOR.UI
UI Controls for Xamarin.Forms
Stars: ✭ 56 (+133.33%)
Mutual labels:  xamarin, xamarin-forms, xamarin-ios, xamarin-android
Simpleauth
The Simplest way to Authenticate and make Rest API calls in .Net
Stars: ✭ 148 (+516.67%)
Mutual labels:  xamarin, xamarin-forms, xamarin-ios, xamarin-android
Microsoft.maui.graphics
Stars: ✭ 160 (+566.67%)
Mutual labels:  xamarin, xamarin-forms, xamarin-ios, xamarin-android
Improvexamarinbuildtimes
Tips and tricks on how to speed up the time it takes to compile a Xamarin app
Stars: ✭ 180 (+650%)
Mutual labels:  xamarin, xamarin-forms, xamarin-ios, xamarin-android
XamarinHOL
Xamarin ハンズオン用のレポジトリ&ドキュメントです。
Stars: ✭ 52 (+116.67%)
Mutual labels:  xamarin, xamarin-forms, xamarin-ios, xamarin-android
WheelPicker-Samples
WheelPicker samples for the WheelPicker Xamarin Component
Stars: ✭ 18 (-25%)
Mutual labels:  xamarin, xamarin-forms, xamarin-ios, xamarin-android
EntryCustomReturnPlugin
Xamarin.Forms Plugin to customize the Xamarin.Forms.Entry Keyboard Return Button
Stars: ✭ 81 (+237.5%)
Mutual labels:  xamarin-forms, xamarin-ios, xamarin-android, xamarin-plugin
Xamarin Demos
This repository contains the Syncfusion Xamarin UI control’s samples and the guide to use them.
Stars: ✭ 218 (+808.33%)
Mutual labels:  xamarin, xamarin-forms, xamarin-ios, xamarin-android
XamarinIoTWorkshop
A workshop that demonstrates how to collect IoT data from a mobile device using a Xamarin app, aggregating the data to the cloud using Azure IoT Hub
Stars: ✭ 13 (-45.83%)
Mutual labels:  xamarin, xamarin-forms, xamarin-ios, xamarin-android
UITestSampleApp
A sample app to demonstrate how to create Xamarin UITests using the Page Object architecture, Backdoor Methods and App Links (aka Deep Linking)
Stars: ✭ 38 (+58.33%)
Mutual labels:  xamarin, xamarin-forms, xamarin-ios, xamarin-android
Plugin.audiorecorder
Audio Recorder plugin for Xamarin and Windows
Stars: ✭ 140 (+483.33%)
Mutual labels:  xamarin, xamarin-forms, xamarin-ios, xamarin-android
Xamarin.forms.videoplayer
A Xamarin Forms control to render the native video player on every platform.
Stars: ✭ 140 (+483.33%)
Mutual labels:  xamarin, xamarin-forms, xamarin-ios, xamarin-android
Xamarin Playground
Random cool stuff I play around using Xamarin.. :3 Some of these cool projects I feature them on my blog, with step by step explanation. :) Don't forget to check it out. Go to: theconfuzedsourcecode.wordpress.com
Stars: ✭ 183 (+662.5%)
Mutual labels:  xamarin, xamarin-forms, xamarin-ios, xamarin-android
Xamarin.Plugin.ImageEdit
Image Edit Plugin for Xamarin
Stars: ✭ 52 (+116.67%)
Mutual labels:  xamarin, xamarin-forms, xamarin-ios, xamarin-android

Clipboard Plugin for Xamarin, Windows & Gtk2

Simple cross platform plugin to read and write to the clipboard.

Setup

Supports

  • Xamarin.Android
  • Xamarin.iOS
  • Xamarin.Mac
  • Windows 10 UWP
  • Gtk# 2.12
  • WPF 4.7.2

API Usage

Call Plugin.Clipboard.CrossClipboard.Current from any project or .NET Standard library to gain access to APIs.

using Plugin.Clipboard;

...

//To set the clipboard
CrossClipboard.Current.SetText("my clipboard text");

//To read the clipboard
string clipboardText = await CrossClipboard.Current.GetTextAsync();

Using in unit tests

//Create mock with LightMock (https://github.com/seesharper/LightMock)
var mockClipboardContext = new MockContext<IClipboard>();
var mockClipboard = new CrossClipboardMock(mockClipboardContext);

CrossClipboard.Current = mockClipboard;
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].