* qfont.ttf:

* qfont.ttf: Icons

* App.xaml.cs: Set Font String System Wide

* RootPage.xaml.cs:
* QGrid.cs:
* QCueListView.cs:
* qConnectionPage.xaml.cs:
* IPHelper.cs:

* QInstanceCell.cs: Switch to using Icon Font

* QSelectedCueCell.cs: Switch to Type Icon instead of just name

* QClient.cs: Create and dispose of sender for every sent message

* QCue.cs: Add Icon Code method

* ControlPage.xaml: Add hamburger menu

* ControlPage.xaml.cs: Menu for Workspace listing/ cue selection

* MenuPage.xaml.cs: Function to change menu items back for home page
This commit is contained in:
2019-04-18 09:09:19 -05:00
parent 54965a961f
commit 8fd0611a12
15 changed files with 218 additions and 173 deletions
@@ -9,7 +9,6 @@ namespace qController
Label number;
Label type;
Label notes;
public QSelectedCueCell()
{
Padding = new Thickness(5);
@@ -66,23 +65,29 @@ namespace qController
}
};
number = new Label { Text = "N/A"};
number.FontAttributes = FontAttributes.Bold;
number.FontSize = 30;
number.Margin = new Thickness(5);
number = new Label {
Text = "N/A",
FontAttributes = FontAttributes.Bold,
FontSize = 30,
Margin = new Thickness(5)
};
name = new Label {
Text = "N/A",
FontAttributes = FontAttributes.Bold,
HorizontalTextAlignment = TextAlignment.Center,
FontSize = 20,
Margin = new Thickness(0)
};
name = new Label { Text = "N/A" };
name.FontAttributes = FontAttributes.Bold;
name.HorizontalTextAlignment = TextAlignment.Center;
name.FontSize = 20;
name.Margin = new Thickness(0);
type = new Label { Text = "N/A" };
type.FontAttributes = FontAttributes.Bold;
type.VerticalTextAlignment = TextAlignment.Center;
type.HorizontalTextAlignment = TextAlignment.End;
type.Margin = new Thickness(5);
type = new Label {
Text = "",
FontFamily = App.QFont,
VerticalTextAlignment = TextAlignment.Center,
HorizontalTextAlignment = TextAlignment.End,
Margin = new Thickness(5),
FontSize = 27
};
notes = new Label { Text = "Viewing Notes Currently Unavailable" };
notes.HorizontalTextAlignment = TextAlignment.Center;
@@ -112,7 +117,7 @@ namespace qController
{
name.Text = cue.name;
number.Text = cue.number;
type.Text = cue.type;
type.Text = cue.getIconString();
notes.Text = cue.notes;
}
}