질문하기질문하기
 

답변됨Form Maximize problem

  • 2009년 11월 4일 수요일 오후 1:09cristy88 사용자 메달사용자 메달사용자 메달사용자 메달사용자 메달
     
    Hi,

    The form that i use for my app gets "under" the taskbar when i maximize it. What i mean is that the bottom part of the form doesn't appear on top of the task bar as it should, instead the taskbar appears over it.

    How can i fix this problem?

    Thanks,
    Cristi

답변

  • 2009년 11월 4일 수요일 오후 4:51Andrey Sidorenko 사용자 메달사용자 메달사용자 메달사용자 메달사용자 메달
     답변됨코드 있음
    Try to use this code in OnLoad:

                Location = new Point(0, 0);
                Size = new Size(Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height);
                TopMost = true;
    
    

    • 답변으로 제안됨Andrey Sidorenko 2009년 11월 5일 목요일 오후 1:22
    • 답변으로 표시됨cristy88 2009년 11월 5일 목요일 오후 11:04
    •  

모든 응답

  • 2009년 11월 4일 수요일 오후 4:51Andrey Sidorenko 사용자 메달사용자 메달사용자 메달사용자 메달사용자 메달
     답변됨코드 있음
    Try to use this code in OnLoad:

                Location = new Point(0, 0);
                Size = new Size(Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height);
                TopMost = true;
    
    

    • 답변으로 제안됨Andrey Sidorenko 2009년 11월 5일 목요일 오후 1:22
    • 답변으로 표시됨cristy88 2009년 11월 5일 목요일 오후 11:04
    •