要在子窗體中顯示查詢內容,可以按照以下步驟進行操作:
下面是一個示例代碼:
在主窗體中的點擊事件中:
private void btnShowChildForm_Click(object sender, EventArgs e)
{
// 假設查詢內容保存在一個名為queryResult的變量中
string queryResult = "查詢結果";
// 實例化子窗體對象,并將查詢內容作為參數傳遞
ChildForm childForm = new ChildForm(queryResult);
// 顯示子窗體
childForm.Show();
}
在子窗體中的構造函數中:
public ChildForm(string queryResult)
{
InitializeComponent();
// 將查詢內容賦值給顯示控件
textBoxQueryResult.Text = queryResult;
}
在子窗體中的Load事件中:
private void ChildForm_Load(object sender, EventArgs e)
{
// 將查詢內容賦值給顯示控件
textBoxQueryResult.Text = queryResult;
}
這樣,當點擊主窗體中的按鈕時,子窗體將會顯示查詢內容。