29 references to Child
WindowsFormsIntegration (29)
System\Windows\Integration\WindowsFormsHost.cs (24)
90if (SWF.ImeModeConversion.IsCurrentConversionTableSupported && this.Child != null && this.Child.IsHandleCreated) 98if (this.Child.ImeMode == ImeMode.Disable) 100SWF.ImeContext.Enable(this.Child.Handle); 105if (this.Child.ImeMode != ImeMode.Disable) 107SWF.ImeContext.Disable(this.Child.Handle); 185if (Child != null) 187Child.Scale(new System.Drawing.SizeF((float)(newScale.X / _currentScale.X), (float)(newScale.Y / _currentScale.Y))); 240if (this.Visibility == Visibility.Collapsed || Child == null) 250SD.Size preferredSize = Child.GetPreferredSize(constraintSize); 271if (this.Visibility == Visibility.Collapsed || Child == null) 283if ((Child.Size != targetSize) && ((finalSize != _priorConstraint) || scaled)) 286Child.Size = targetSize; 288Size returnSize = Convert.ToSystemWindowsSize(Child.Size, _currentScale, dpi.DpiScaleX, dpi.DpiScaleY); 319Control oldChild = Child; 333if (Child != null) 337Child.Margin = SWF.Padding.Empty; 338Child.Dock = DockStyle.None; 339Child.AutoSize = false; 340Child.Location = SD.Point.Empty; 356if (this.Child != null) 358this.Child.GotFocus += new EventHandler(this.OnChildGotFocus); 554if (Child != null) 556Child.Dispose();
System\Windows\Integration\WindowsFormsHostPropertyMap.cs (5)
80SWF.Control child = windowsFormsHost.Child; 271if (windowsFormsHost != null && windowsFormsHost.Child != null) 274windowsFormsHost.Child.Visible = ((SW.Visibility)value == SW.Visibility.Visible); 300if (windowsFormsHost == null || windowsFormsHost.Child == null) 304return windowsFormsHost.Child;