|
|
|
C# ผมจะนำตัวแปร ที่ส่งค่าข้าง form มาแล้วนำไปใช้ยังไงครับ |
|
|
|
|
|
|
|
ส่งผ่าน Property ครับ
Code (C#)
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 WindowsFormsApplication2
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
this.IsMdiContainer = true;
}
private void addToolStripMenuItem_Click(object sender, EventArgs e)
{
Form2 frm = new Form2();
frm.MdiParent = this;
frm.Show();
}
private void closeToolStripMenuItem1_Click(object sender, EventArgs e)
{
this.ActiveMdiChild.Close();
}
private void saveToolStripMenuItem_Click(object sender, EventArgs e)
{
((Form2)this.ActiveMdiChild).Save();
}
}
}
Go to : C# อยากทราบเรื่อง การส่งค่าข้าม Form ที่เป็น MDIparent and child
|
|
|
|
|
Date :
2012-04-09 06:28:31 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|