문제

I am developing an desktop windows application, which have multiple windows forms.

The initial version of the application was such that one form will be called by another form.

But due to these multiple forms opening, I created a parent form and set it as MDI container and made all other forms to be it's child and displayed in the parent form. But the tool tip which was properly displayed earlier (when one form called from another) is not displaying now.

In Form1 i am using this:

Form2 obj=new Form2();
obj.MdiParent=this;
obj.show();

which will show the Form2 in Form1 where Form1 is a MDIContainer.

The tool tips in Form1(MDI Container) is displayed properly ,but tool tips in Form2(MDI Child) not showing.

If anyone knows the solution for this problem please help, I really got stuck in this problem.

도움이 되었습니까?

해결책

The above problem solved for me , when i moved a control in MDI Container to an area where child form is shown.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top