4 instantiations of HwndSourceParameters
PresentationCore (3)
Core\CSharp\System\Windows\Interop\HwndSource.cs (3)
96HwndSourceParameters param = new HwndSourceParameters(name); 163HwndSourceParameters parameters = new HwndSourceParameters(name, width, height); 227HwndSourceParameters parameters = new HwndSourceParameters(name, width, height);
PresentationFramework (1)
src\Framework\System\Windows\Controls\Primitives\Popup.cs (1)
3456HwndSourceParameters param = new HwndSourceParameters(String.Empty);
18 references to HwndSourceParameters
PresentationCore (12)
Core\CSharp\System\Windows\Interop\HwndSource.cs (6)
96HwndSourceParameters param = new HwndSourceParameters(name); 163HwndSourceParameters parameters = new HwndSourceParameters(name, width, height); 227HwndSourceParameters parameters = new HwndSourceParameters(name, width, height); 248public HwndSource(HwndSourceParameters parameters) 263private void Initialize(HwndSourceParameters parameters) 1474bool usesPerPixelOpacity = _constructionParameters != null ? ((HwndSourceParameters)_constructionParameters).EffectivePerPixelOpacity : _hwndTarget.UsesPerPixelOpacity;
Core\CSharp\System\Windows\Interop\HwndSourceParameters.cs (6)
328public static bool operator==(HwndSourceParameters a, HwndSourceParameters b) 339public static bool operator!=(HwndSourceParameters a, HwndSourceParameters b) 356return Equals( (HwndSourceParameters)obj ); 364public bool Equals(HwndSourceParameters obj)
PresentationFramework (6)
src\Framework\MS\Internal\AppModel\RootBrowserWindow.cs (2)
244internal override HwndSourceParameters CreateHwndSourceParameters() 246HwndSourceParameters parameters = base.CreateHwndSourceParameters();
src\Framework\System\Windows\Controls\Primitives\Popup.cs (1)
3456HwndSourceParameters param = new HwndSourceParameters(String.Empty);
src\Framework\System\Windows\Window.cs (3)
2611HwndSourceParameters param = CreateHwndSourceParameters(); 2689internal virtual HwndSourceParameters CreateHwndSourceParameters() 2691HwndSourceParameters param = new HwndSourceParameters(Title, NativeMethods.CW_USEDEFAULT, NativeMethods.CW_USEDEFAULT);