1.图片的显示和隐藏。在窗体上放置一个图片框、一个“显示”按钮和一个“隐藏”按钮。开始运行时,图片不可见,“显示“按钮可用,“隐藏”按钮不可用。单击“显示”按钮后,图片显示出来,“显示”按钮变成不可用,而“隐藏”按钮变成可用。
代码如下
private void Form1_Load(object sender, EventArgs e) 性格解析
{
this.pictureBox1.Hide();
三伏天祛湿气最佳时间this.button1.Enabled = false;//隐藏按钮不可用
}
笛子购买private void button2_Click(object sender, EventArgs e)
{
this.pictureBox1.Show();
this.button1.Enabled = true;//隐藏按钮可用
}
写月亮的古诗private void button1_Click(object sender, EventArgs e)
{
this.pictureBox1.Hide();
this.button2.Enabled = true;
this.button1.Enabled = false;
s2 lol}
2.在C#中设计这样一个窗体,选中“显示”按钮时显示图片,选中“隐藏”按钮时隐藏图片,其按钮事件
代码:
国旗旗杆标准buttonCli()//显示
{
Img.visable=false;
}
buttonCli()//隐藏
{
Img.visable=true;
}
}
3.在c#中用picturebox工具箱加载图片,载入FORM时候图片隐藏,双击鼠标,显示图片。
代码:
private void Form1_Load(object sender, EventArgs e)
{
pictureBox1.Visible = false;
}
private void Form1_MouseDoubleClick(object sender, MouseEventArgs e)
{
pictureBox1.Visible = true;
}
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论