Практическое руководство. Отправка данных в активную дочернюю MDI-форму
Обновлен: Ноябрь 2007
Часто в контексте приложений с многодокументным интерфейсом (MDI) требуется отправить данные в активное дочернее окно. Например, это требуется в том случае, если пользователь вставляет данные из буфера обмена в приложение с MDI-интерфейсом.
Примечание. |
---|
Сведения о том, как проверить, в каком дочернем окне находится фокус, и как отправить содержимое этого окна в буфер обмена, см. в разделе Определение активной дочерней MDI-формы. |
Чтобы отправить данные в активную дочернюю MDI-форму из буфера обмена
В методе скопируйте текст активного элемента управления активной дочерней формы в буфер обмена.
Примечание. В этом примере предполагается, что существует родительская форма MDI (Form1), которая имеет одну или несколько дочерних MDI-окон, содержащих элемент управления RichTextBox. Дополнительные сведения см. в разделе Создание родительских MDI-форм.
Public Sub mniPaste_Click(ByVal sender As Object, _ ByVal e As System.EventArgs) Handles mniPaste.Click ' Determine the active child form. Dim activeChild As Form = Me.ParentForm.ActiveMDIChild ' If there is an active child form, find the active control, which ' in this example should be a RichTextBox. If (Not activeChild Is Nothing) Then Try Dim theBox As RichTextBox = Ctype(activeChild.ActiveControl, RichTextBox) If (Not theBox Is Nothing) Then ' Create a new instance of the DataObject interface. Dim data As IDataObject = Clipboard.GetDataObject() ' If the data is text, then set the text of the ' RichTextBox to the text in the clipboard. If (data.GetDataPresent(DataFormats.Text)) Then theBox.SelectedText = data.GetData(DataFormats.Text).ToString() End If End If Catch MessageBox.Show("You need to select a RichTextBox.") End Try End If End Sub
protected void mniPaste_Click (object sender, System.EventArgs e) { // Determine the active child form. Form activeChild = this.ParentForm.ActiveMdiChild; // If there is an active child form, find the active control, which // in this example should be a RichTextBox. if (activeChild != null) { try { RichTextBox theBox = (RichTextBox)activeChild.ActiveControl; if (theBox != null) { // Create a new instance of the DataObject interface. IDataObject data = Clipboard.GetDataObject(); // If the data is text, then set the text of the // RichTextBox to the text in the clipboard. if (data.GetDataPresent(DataFormats.Text)) { theBox.SelectedText = data.GetData(DataFormats.Text).ToString(); } } } catch { MessageBox.Show("You need to select a RichTextBox."); } } }
private void mniPaste_Click(System.Object sender, System.EventArgs e) { // Determine the active child form. Form activeChild = this.get_ActiveMdiChild(); // If there is an active child form, find the active control, which // in this example should be a RichTextBox. if ( activeChild != null ) { try { RichTextBox theBox = ((RichTextBox)(activeChild.get_ActiveControl())); if ( theBox != null ) { // Put the selected text on the Clipboard. Clipboard.SetDataObject(theBox.get_SelectedText()); } } catch(System.Exception exp) { MessageBox.Show("You need to select a RichTextBox."); } } }
См. также
Задачи
Практическое руководство. Создание родительских MDI-форм
Практическое руководство. Создание дочерних MDI-форм
Практическое руководство. Определение активной дочерней MDI-формы
Практическое руководство. Упорядочение дочерних форм интерфейса MDI