2024-05-11 16:00:45 -07:00
|
|
|
namespace MintHTML
|
|
|
|
{
|
|
|
|
public partial class Form1 : Form
|
|
|
|
{
|
|
|
|
public Form1()
|
|
|
|
{
|
|
|
|
InitializeComponent();
|
|
|
|
}
|
2024-05-11 16:12:18 -07:00
|
|
|
|
|
|
|
private void radioButton1_CheckedChanged(object sender, EventArgs e)
|
|
|
|
{
|
|
|
|
groupBox2.Enabled = radioButton1.Checked;
|
|
|
|
}
|
2024-05-11 16:00:45 -07:00
|
|
|
}
|
|
|
|
}
|