Хелпикс

Главная

Контакты

Случайная статья





Решение проблемы с доступом к элементам управления



Решение проблемы с доступом к элементам управления

 

 

using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Linq;

using System.Text;

using System.Windows.Forms;

 

namespace WindowsFormsApplication3

{

public partial class Form1 : Form

{

   public System.Windows.Forms.TextBox textbox = new System.Windows.Forms.TextBox();

   public System.Windows.Forms.Button button = new System.Windows.Forms.Button();

 

  public Form1()

   {

       InitializeComponent();

   }

       

   public void IN_Text(string s)

   {

       textBox1.Text = s;

   }

   public void IN_button(string s)

   {

       button2.Text = s;

   }

   private void button1_Click(object sender, EventArgs e)

   {

       IN_Text("Hello");

   }

   private void button2_Click(object sender, EventArgs e)

   {

       IN_button("dsfsdfs");

   }

}

}

 

 



  

© helpiks.su При использовании или копировании материалов прямая ссылка на сайт обязательна.