示例#1
0
 public frmIgra(int X, int Y, HangmanClient client = null)
 {
     this.X        = X;
     this.Y        = Y;
     this.Location = new Point(X, Y);
     this.client   = client;
     InitializeComponent();
 }
示例#2
0
        /*
         * Otvaranje konekcije na servis
         */
        private void Connect()
        {
            var security = new SecurityMode();
            var binding  = new WSHttpBinding(security, true);
            var address  = new EndpointAddress("http://zivlakmilos.ddns.net:8325/");

            client = new HangmanClient(binding, address);
        }
示例#3
0
		public frmRekordi(int X, int Y, HangmanClient client = null)
        {
            this.X = X;
            this.Y = Y;
            this.Location = new Point(X, Y);
			this.client = client;
            InitializeComponent();
        }
示例#4
0
		/*
		 * Otvaranje konekcije na servis
		 */
		private void Connect ()
		{
			var security = new SecurityMode ();
			var binding = new WSHttpBinding (security, true);
			var address = new EndpointAddress ("http://zivlakmilos.ddns.net:8325/");
			client = new HangmanClient (binding, address);
		}
示例#5
0
 public frmUnosRekorda(HangmanClient client = null)
 {
     this.client = client;
     InitializeComponent();
 }
示例#6
0
		public frmUnosRekorda(HangmanClient client = null)
        {
			this.client = client;
            InitializeComponent();
        }