mirror of
https://github.com/jwetzell/qController.git
synced 2026-08-04 15:07:55 +00:00
21 lines
322 B
C#
21 lines
322 B
C#
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;
|
|
}
|
|
|
|
}
|
|
}
|