C# Form button 事件
定了2个From(Form1Form2)Form1上有一个ButtonForm2上有一个Button;1.触发Form1的Button按键Form1隐藏Form2显示。2...
定了2 个 From(Form1 Form2) Form1上有一个Button Form2上有一个Button;
1.触发 Form1的Button按键 Form1隐藏 Form2 显示。
2.Form2关闭时,Form1 显示 Form1上的Button 隐藏。
能附上源码么? 加分 展开
1.触发 Form1的Button按键 Form1隐藏 Form2 显示。
2.Form2关闭时,Form1 显示 Form1上的Button 隐藏。
能附上源码么? 加分 展开
3个回答
展开全部
在C#中,两个动态的窗口是不能互相访问的,要想实现你说的功能,可以有两种方式:
一种就是把两个窗口都定义成静态窗口,然后就可以用实例名访问。
另一种办法就是定义一个窗口容器,然后根据窗口的tag访问。
一种就是把两个窗口都定义成静态窗口,然后就可以用实例名访问。
另一种办法就是定义一个窗口容器,然后根据窗口的tag访问。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
利用form.Show和form.Hide函数,还有formclosing事件很容易就能解决这类的问题。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
加我好友, 我发源码给你, 这个放不下
==================form1.cs====================
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 button1_Click(object sender, EventArgs e)
{
this.Visible = false;
try
{
Program.f2.Visible = true;
}
catch (Exception)
{
}
}
}
}
==================form2.cs====================
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 Form2 : Form
{
public Form2()
{
InitializeComponent();
}
private void Form2_FormClosed(object sender, FormClosedEventArgs e)
{
Program.f1.Visible = true;
Program.f1.button1.Visible = false;
}
}
}
=========================program.cs===============
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
f1 = new Form1();
f2 = new Form2();
Application.Run(f1);
}
public static Form1 f1;
public static Form2 f2;
}
}
=============form1.designer.cs======================
namespace WindowsFormsApplication1
{
partial class Form1
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name=
==================form1.cs====================
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 button1_Click(object sender, EventArgs e)
{
this.Visible = false;
try
{
Program.f2.Visible = true;
}
catch (Exception)
{
}
}
}
}
==================form2.cs====================
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 Form2 : Form
{
public Form2()
{
InitializeComponent();
}
private void Form2_FormClosed(object sender, FormClosedEventArgs e)
{
Program.f1.Visible = true;
Program.f1.button1.Visible = false;
}
}
}
=========================program.cs===============
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
f1 = new Form1();
f2 = new Form2();
Application.Run(f1);
}
public static Form1 f1;
public static Form2 f2;
}
}
=============form1.designer.cs======================
namespace WindowsFormsApplication1
{
partial class Form1
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name=
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询