Example #1
0
        void UpdateOrientation()
        {
            if (Orientation == StackOrientation.Vertical)
            {
                DashboardContent.SetGridColumn(0, 4);
                DashboardContent.SetGridRow(0, 1);

                ClusterMapContent.SetGridColumn(0, 4);
                ClusterMapContent.SetGridRow(1, 1);

                HistoryContent.SetGridColumn(0, 4);
                HistoryContent.SetGridRow(2, 1);

                SettingsContent.SetGridColumn(0, 4);
                SettingsContent.SetGridRow(3, 1);
            }
            else
            {
                DashboardContent.SetGridColumn(0, 1);
                DashboardContent.SetGridRow(0, 4);

                ClusterMapContent.SetGridColumn(1, 1);
                ClusterMapContent.SetGridRow(0, 4);

                HistoryContent.SetGridColumn(2, 1);
                HistoryContent.SetGridRow(0, 4);

                SettingsContent.SetGridColumn(3, 1);
                SettingsContent.SetGridRow(0, 4);
            }
        }
Example #2
0
 public void MessageReceived(string message)
 {
     HistoryContent.Add(message);
     RaisePropertyChanged(nameof(HistoryContent));
 }