private void SetConnecting(GeographicalServer server) { this.StateMessage = string.Format("Connecting to {0}", server.GetConnectionName()); this.LabelForeground = "#8ba6bd"; this.BubbleColor = "#b5ce92"; }
private void SetConnected(GeographicalServer server) { this.LabelForeground = "#8ba6bd"; this.BubbleColor = "#73ba10"; this.StateMessage = string.Format("You are connected to {0}.", server.GetConnectionName()) + string.Format(" {0}", SubHeaderBarViewModel.GetResolvedIpDestinationMessage(server, "")); }