mirror of
https://github.com/jwetzell/qController.git
synced 2026-08-19 06:04:12 +00:00
Initial check-in of module qController
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using Xamarin.Forms;
|
||||
|
||||
namespace qController
|
||||
{
|
||||
public class QButton : Button
|
||||
{
|
||||
public string OSCCommand
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
public QButton(string text, string cmd)
|
||||
{
|
||||
Text = text;
|
||||
OSCCommand = cmd;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user