27 references to Child
WindowsFormsIntegration (27)
System\Windows\Integration\WindowsFormsHost.cs (22)
87if (SWF.ImeModeConversion.IsCurrentConversionTableSupported && this.Child != null && this.Child.IsHandleCreated) 95if (this.Child.ImeMode == ImeMode.Disable) 97SWF.ImeContext.Enable(this.Child.Handle); 102if (this.Child.ImeMode != ImeMode.Disable) 104SWF.ImeContext.Disable(this.Child.Handle); 182Child?.Scale(new System.Drawing.SizeF((float)(newScale.X / _currentScale.X), (float)(newScale.Y / _currentScale.Y))); 234if (this.Visibility == Visibility.Collapsed || Child == null) 244SD.Size preferredSize = Child.GetPreferredSize(constraintSize); 265if (this.Visibility == Visibility.Collapsed || Child == null) 277if ((Child.Size != targetSize) && ((finalSize != _priorConstraint) || scaled)) 280Child.Size = targetSize; 282Size returnSize = Convert.ToSystemWindowsSize(Child.Size, _currentScale, dpi.DpiScaleX, dpi.DpiScaleY); 311Control oldChild = Child; 325if (Child != null) 329Child.Margin = SWF.Padding.Empty; 330Child.Dock = DockStyle.None; 331Child.AutoSize = false; 332Child.Location = SD.Point.Empty; 347if (this.Child != null) 349this.Child.GotFocus += new EventHandler(this.OnChildGotFocus); 536Child?.Dispose();
System\Windows\Integration\WindowsFormsHostPropertyMap.cs (5)
78SWF.Control child = windowsFormsHost.Child; 269if (windowsFormsHost != null && windowsFormsHost.Child != null) 272windowsFormsHost.Child.Visible = ((SW.Visibility)value == SW.Visibility.Visible); 298if (windowsFormsHost == null || windowsFormsHost.Child == null) 302return windowsFormsHost.Child;