All Projects → JuniperPhoton → FlipperControlUWP

JuniperPhoton / FlipperControlUWP

Licence: other
A control that uses flip transition to change different states for UWP apps.

Programming Languages

C#
18002 projects

Projects that are alternatives of or similar to FlipperControlUWP

rts2
Contains core part of the RTS2 - RTS2 libraries, and drivers for basic devices.
Stars: ✭ 35 (+16.67%)
Mutual labels:  control
multi uav simulator
A quadrotor swarm simulator based on ROS (Robot Operating System).
Stars: ✭ 73 (+143.33%)
Mutual labels:  control
SAMD TimerInterrupt
This library enables you to use Interrupt from Hardware Timers on an SAMD-based board. These SAMD Hardware Timers, using Interrupt, still work even if other functions are blocking. Moreover, they are much more precise (certainly depending on clock frequency accuracy) than other software timers using millis() or micros(). That's mandatory if you …
Stars: ✭ 28 (-6.67%)
Mutual labels:  control
Xamarin.Forms.MultiSelectListView
☑️ Select multiple rows in a listview with xamarin.forms
Stars: ✭ 61 (+103.33%)
Mutual labels:  control
memorize
Code and real data for "Enhancing Human Learning via Spaced Repetition Optimization", PNAS 2019
Stars: ✭ 155 (+416.67%)
Mutual labels:  control
file-input-accessor
Angular directive that provides file input functionality in Angular forms.
Stars: ✭ 32 (+6.67%)
Mutual labels:  control
PuTTY-ng
An improved multi-tabbed PuTTY with better user experience. This project is based on noddle1983's putty-nd.
Stars: ✭ 37 (+23.33%)
Mutual labels:  control
typeioc
Dependency injection container for typescript / javascript
Stars: ✭ 32 (+6.67%)
Mutual labels:  control
react-native-segment-control
Swipeable SegmentedControl component for React Native apps
Stars: ✭ 21 (-30%)
Mutual labels:  control
DcRat
A simple remote tool in C#.
Stars: ✭ 709 (+2263.33%)
Mutual labels:  control
vscode-control-snippets
Disable or enable VS Code's built-in snippets and manually installed snippets from extensions.
Stars: ✭ 43 (+43.33%)
Mutual labels:  control
DialogHost.Avalonia
AvaloniaUI control that provides a simple way to display a dialog with information or prompt the user when information is needed
Stars: ✭ 92 (+206.67%)
Mutual labels:  control
abb-yumi
This project aims to control abb yumi(irb14400) robot using ros control interface so that you can send joint trajectory command to robot. Also we implemented a cartesian velocity controller using KDL library.
Stars: ✭ 21 (-30%)
Mutual labels:  control
AXIOM-Remote
A device to control AXIOM cameras.
Stars: ✭ 24 (-20%)
Mutual labels:  control
robotarium-rendezvous-RSSDOA
This repository contains the Matlab source codes (to use in Robotarium platform) of various rendezvous controllers for consensus control in a multi-agent / multi-robot system.
Stars: ✭ 35 (+16.67%)
Mutual labels:  control
Reactor-and-Turbine-control-program
This is my Reactor- and Turbine control program for ComputerCraft and BigReactors
Stars: ✭ 18 (-40%)
Mutual labels:  control
JuliaAutonomy
Julia sample codes for Autonomy, Robotics and Self-Driving Algorithms.
Stars: ✭ 21 (-30%)
Mutual labels:  control
UIPheonix
Inspired by game development UIPheonix is a super easy, flexible, dynamic and highly scalable UI framework + concept for building reusable component/control-driven apps for macOS, iOS and tvOS. The same API apply for cross platform development! Think of it as using Lego blocks, you can use similar ones and move them around easy as pie.
Stars: ✭ 29 (-3.33%)
Mutual labels:  control
STNodeEditor
一款基于.Net WinForm的节点编辑器 纯GDI+绘制 使用方式非常简洁 提供了丰富的属性以及事件 可以非常方便的完成节点之间数据的交互及通知 大量的虚函数供开发者重写具有很高的自由性
Stars: ✭ 166 (+453.33%)
Mutual labels:  control
RS232-Monitor-Database
🔌📺 This is a public database for all the known RS232 commands for professionnal screens, monitors and projectors. Feel free to contribute !
Stars: ✭ 22 (-26.67%)
Mutual labels:  control

FlipperControl

A control that uses flip transition to change different states for UWP apps.

Works on Build 10586 or higher because this control uses Composition API.

Preview

Get from Nuget

Install-Package FlipperControl

How to use

xmlns:flipper="using:FlipperControl"

<flipper:FlipperControl Grid.Row="1"
                      AllowTapToFlip="True"
                      FlipDirection="BackToFront"
                      RotationAxis="X">
        <flipper:FlipperControl.Views>
           <!--Insert framework elements-->
        </flipper:FlipperControl.Views>
</flipper:FlipperControl>

FlipperControlTest proj has demenstrated how to use this control.

There are a few properties that control the behavior:

DisplayIndex property

The only way to change the visual state of the control. Note that the value of zero points to the last framework element you added in FlipperControl.Views.

Note: Be aware of the **IndexOutOfRangeException **.

AllowTapToFlip property

Tap to flip. If there is a button on your view and you have set e.Handled=true, this will NOT work even if this property is enabled.

RotationAxis property

Currently the value is either X or Y.

FlipDirection property

Currently the value is either FrontToBack or BackToFront.

AnimationDuration property

It's obvious.

EnablePerspect property

The default value is true.

When set this to true:

Preview

When it's false:

Preview

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].