public MainWindow()
        {
            InitializeComponent();

            this.serverAddress      = new IPEndPoint(IPAddress.Parse("127.0.0.1"), PORT);
            this.ClientThreadMethod = new AuctionClientThread();

            this.ClientThreadMethod.bidreceivedEvent += new BidReceived(BidReceivedHandler);
        }
        public MainWindow()
        {
            InitializeComponent();

            this.serverAddress = new IPEndPoint(IPAddress.Parse("127.0.0.1"), PORT);
            this.ClientThreadMethod = new AuctionClientThread();

            this.ClientThreadMethod.bidreceivedEvent += new BidReceived(BidReceivedHandler);
        }