2016-06-17 08:11:00 +02:00
|
|
|
|
using Microsoft.MicroBit.Properties;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Data;
|
|
|
|
|
using System.Drawing;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
|
|
|
|
|
namespace Microsoft.MicroBit
|
|
|
|
|
{
|
|
|
|
|
public partial class LicenseDialog : Form
|
|
|
|
|
{
|
|
|
|
|
public LicenseDialog()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
2016-08-18 17:32:36 +02:00
|
|
|
|
this.textBox.Text = Resources.MSR_LA___2576;
|
2016-06-17 08:11:00 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void acceptButton_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
this.DialogResult = DialogResult.Yes;
|
|
|
|
|
this.Close();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void exitButton_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
this.DialogResult = DialogResult.No;
|
|
|
|
|
this.Close();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|