1 write to _currentIws
PresentationFramework (1)
src\Framework\System\Windows\Controls\Page.cs (1)
775
_currentIws
= iws;
11 references to _currentIws
PresentationFramework (11)
src\Framework\System\Windows\Controls\Page.cs (11)
778
if (
_currentIws
!= null)
803
Debug.Assert(
_currentIws
!= null, "_currentIws cannot be null here. Caller should always verify it");
812
_currentIws
.Title = PageHelperObject._windowTitle;
814
if (IsPropertySet(SetPropertyFlags.WindowHeight) && (!
_currentIws
.UserResized))
816
_currentIws
.Height = PageHelperObject._windowHeight;
819
if (IsPropertySet(SetPropertyFlags.WindowWidth) && (!
_currentIws
.UserResized))
821
_currentIws
.Width = PageHelperObject._windowWidth;
834
Invariant.Assert(
_currentIws
!= null, "_currentIws cannot be null here.");
835
return
_currentIws
.UserResized;
841
NavigationWindow navWin =
_currentIws
as NavigationWindow;
925
return
_currentIws
;