Work on Workspace loading

This commit is contained in:
2019-04-23 11:05:28 -05:00
parent 2bbf837b9e
commit 924a8e7af0
10 changed files with 79 additions and 29 deletions
@@ -2,6 +2,8 @@
using System.Net;
using System.Net.NetworkInformation;
using Xamarin.Forms;
using SharpOSC;
using System.Threading;
namespace qController
{
@@ -9,6 +9,7 @@ namespace qController
Label number;
Label type;
Label notes;
public QCue activeCue;
public QSelectedCueCell()
{
Padding = new Thickness(5);
@@ -115,6 +116,7 @@ namespace qController
public void UpdateSelectedCue(QCue cue)
{
activeCue = cue;
name.Text = cue.listName;
number.Text = cue.number;
type.Text = cue.getIconString();