【发布时间】:2014-12-29 04:39:42
【问题描述】:
没有代码问题,调试没有任何问题,但是当我测试时,当我选中复选框时,不透明度没有改变。什么都没发生。我正在使用 VisualStudio 2013 Express。代码如下:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace TP3
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
int carac = textBox1.Text.Length;
label2.Text = carac.ToString();
}
private void label2_Click(object sender, EventArgs e)
{
}
private void checkBox1_CheckedChanged(object sender, EventArgs e)
{
Form Form1;
Form1 = new Form1();
if(checkBox1.Checked == true)
{
Form1.Opacity = 1;
}
}
}
}
【问题讨论】:
-
您不需要创建表单的新实例。
标签: c# visual-studio checkbox