コード例 #1
0
        public ServerMainWindow()
        {
            InitializeComponent();

            statusLabel.Content = "Not running";
            statusLabel.Foreground = Brushes.Red;

            chatService = new ServerImplementation(this);
            host = new ServiceHost(chatService);
        }
コード例 #2
0
        public ServerMainWindow()
        {
            InitializeComponent();

            statusLabel.Content    = "Not running";
            statusLabel.Foreground = Brushes.Red;

            chatService = new ServerImplementation(this);
            host        = new ServiceHost(chatService);
        }