OwnedForm is not minimized with Main Form

Answered
0
0

Hi
in desktop winform application, if I minimize the main form, even ownedForm should be minimized, but this does not happen
regards
Cristian

C#

private void ShowMyOwnedForm()
{
// Create an instance of the form to be owned.
Form ownedForm = new Form();
// Set the text of the form to identify it is an owned form.
ownedForm.Text = "Owned Form";
// Add ownedForm to array of owned forms.
this.AddOwnedForm(ownedForm);

// Show the owned form.
ownedForm.Show();
}

VBNET
Private Sub ShowMyOwnedForm()
Dim ownedForm As Form = New Form()
ownedForm.Text = "Owned Form"
Me.AddOwnedForm(ownedForm)
ownedForm.Show()
End Sub

  • You must to post comments
Best Answer
0
0

Hi Cristian,

issue #1989 is fixed in Wisej release 2.0.47

Best regards
Frank

  • You must to post comments
0
0

Thanks for finding this bug. I’ve logged as issue #1989, and I’ll update this thread when it’s fixed.

Best regards,

Nick

  • You must to post comments
Showing 2 results
Your Answer

Please first to submit.