5 instantiations of HwndSourceParameters
PresentationCore (3)
System\Windows\InterOp\HwndSource.cs (3)
79
HwndSourceParameters param = new
HwndSourceParameters
(name);
138
HwndSourceParameters parameters = new
HwndSourceParameters
(name, width, height);
194
HwndSourceParameters parameters = new
HwndSourceParameters
(name, width, height);
PresentationFramework (1)
System\Windows\Controls\Primitives\Popup.cs (1)
3336
HwndSourceParameters param = new
HwndSourceParameters
(String.Empty);
WindowsFormsIntegration (1)
System\Windows\Integration\ElementHost.cs (1)
576
HwndSourceParameters HWSParam = new
HwndSourceParameters
(this.Text, cp.Width, cp.Height);
17 references to HwndSourceParameters
PresentationCore (12)
System\Windows\InterOp\HwndSource.cs (6)
79
HwndSourceParameters
param = new HwndSourceParameters(name);
138
HwndSourceParameters
parameters = new HwndSourceParameters(name, width, height);
194
HwndSourceParameters
parameters = new HwndSourceParameters(name, width, height);
210
public HwndSource(
HwndSourceParameters
parameters)
219
private void Initialize(
HwndSourceParameters
parameters)
1259
bool usesPerPixelOpacity = _constructionParameters != null ? ((
HwndSourceParameters
)_constructionParameters).EffectivePerPixelOpacity : _hwndTarget.UsesPerPixelOpacity;
System\Windows\InterOp\HwndSourceParameters.cs (6)
326
public static bool operator==(
HwndSourceParameters
a,
HwndSourceParameters
b)
337
public static bool operator!=(
HwndSourceParameters
a,
HwndSourceParameters
b)
354
return Equals( (
HwndSourceParameters
)obj );
362
public bool Equals(
HwndSourceParameters
obj)
PresentationFramework (4)
System\Windows\Controls\Primitives\Popup.cs (1)
3336
HwndSourceParameters
param = new HwndSourceParameters(String.Empty);
System\Windows\Window.cs (3)
2546
HwndSourceParameters
param = CreateHwndSourceParameters();
2650
internal virtual
HwndSourceParameters
CreateHwndSourceParameters()
2652
HwndSourceParameters
param = new HwndSourceParameters(Title, NativeMethods.CW_USEDEFAULT, NativeMethods.CW_USEDEFAULT);
WindowsFormsIntegration (1)
System\Windows\Integration\ElementHost.cs (1)
576
HwndSourceParameters
HWSParam = new HwndSourceParameters(this.Text, cp.Width, cp.Height);