창위치

    [WPF] 창을 화면의 우측하단 영역에 위치시키기

    //창을 화면의 우측하단 영역에 위치시키기 this.Left = SystemParameters.WorkArea.Width - this.Width; this.Top = SystemParameters.WorkArea.Height - this.Height; ////창을 작업 영역의 중앙에 위치시키기 //this.Left = (SystemParameters.WorkArea.Width/2) - this.Left; //this.Top = (SystemParameters.WorkArea.Height/2) - this.Top;