public TelaConexao()
 {
     InitializeComponent();
     local              = false;
     funcoes            = new Itens_Compartilhados.Funcoes();
     rb_Iniciar.Checked = true;
     l_fixo.Text        = funcoes.retornaIP();
 }
 private void Tela_Load(object sender, EventArgs e)
 {
     funcoes = new Itens_Compartilhados.Funcoes();
     carregaCartas();
     inicia_Informacoes();
     Super_Trunfo_Servidor.Execucao server = new Super_Trunfo_Servidor.Execucao();
     threadServidor             = new Thread(() => server.executar());
     toolStripStatusLabel3.Text = "IP: " + funcoes.retornaIP();
 }
 private void buttonOK_Click(object sender, EventArgs e)
 {
     if (rb_lista.Checked)
     {
         this.IP = cb_ListaIP.Items[cb_ListaIP.SelectedIndex].ToString();
     }
     else if (rb_Iniciar.Checked)
     {
         this.IP    = funcoes.retornaIP();
         this.local = true;
     }
     else if (rb_informar.Checked)
     {
         this.IP = tb_InfIP.Text;
     }
     this.DialogResult = DialogResult.OK;
     this.Close();
 }