■ Application 클래스를 사용해 브라우저 크기 변경시 처리하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
using System; using System.Windows; ... Application.Current.Host.Content.Resized += Content_Resized; ... #region 내용 크기 변경시 처리하기 - Content_Resized(sender, e) /// <summary> /// 내용 크기 변경시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void Content_Resized(object sender, EventArgs e) { Width = Application.Current.Host.Content.ActualWidth; Height = Application.Current.Host.Content.ActualHeight; } #endregion |