Вот код:
Код: Выделить всё
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 WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void btnEnglish_Click(object sender, EventArgs e)
{
this.Text = " Do you speak English? ";
}
private void btnSpanish_Click(object sender, EventArgs e)
{
this.Text = " Do you speak Spanish? ";
}
private void btnOk_Click(object sender, EventArgs e)
{
Application.Exit();
}
}
}
Некоторый поиск привел меня к http://msdn.microsoft.com/en-us/library/fa13yay7.aspx, но я не уверен, как применить это в моем свойства кода или проекта или есть какие-то другие проблемы?
Подробнее здесь: https://stackoverflow.com/questions/176 ... p-winforms
Мобильная версия