27 references to Child
WindowsFormsIntegration (27)
System\Windows\Integration\WindowsFormsHost.cs (22)
88if (SWF.ImeModeConversion.IsCurrentConversionTableSupported && this.Child != null && this.Child.IsHandleCreated) 96if (this.Child.ImeMode == ImeMode.Disable) 98SWF.ImeContext.Enable(this.Child.Handle); 103if (this.Child.ImeMode != ImeMode.Disable) 105SWF.ImeContext.Disable(this.Child.Handle); 183Child?.Scale(new System.Drawing.SizeF((float)(newScale.X / _currentScale.X), (float)(newScale.Y / _currentScale.Y))); 235if (this.Visibility == Visibility.Collapsed || Child == null) 245SD.Size preferredSize = Child.GetPreferredSize(constraintSize); 266if (this.Visibility == Visibility.Collapsed || Child == null) 278if ((Child.Size != targetSize) && ((finalSize != _priorConstraint) || scaled)) 281Child.Size = targetSize; 283Size returnSize = Convert.ToSystemWindowsSize(Child.Size, _currentScale, dpi.DpiScaleX, dpi.DpiScaleY); 312Control oldChild = Child; 326if (Child != null) 330Child.Margin = SWF.Padding.Empty; 331Child.Dock = DockStyle.None; 332Child.AutoSize = false; 333Child.Location = SD.Point.Empty; 348if (this.Child != null) 350this.Child.GotFocus += new EventHandler(this.OnChildGotFocus); 537Child?.Dispose();
System\Windows\Integration\WindowsFormsHostPropertyMap.cs (5)
79SWF.Control child = windowsFormsHost.Child; 270if (windowsFormsHost != null && windowsFormsHost.Child != null) 273windowsFormsHost.Child.Visible = ((SW.Visibility)value == SW.Visibility.Visible); 299if (windowsFormsHost == null || windowsFormsHost.Child == null) 303return windowsFormsHost.Child;