29 references to Child
WindowsFormsIntegration (29)
System\Windows\Integration\WindowsFormsHost.cs (24)
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); 183if (Child != null) 185Child.Scale(new System.Drawing.SizeF((float)(newScale.X / _currentScale.X), (float)(newScale.Y / _currentScale.Y))); 238if (this.Visibility == Visibility.Collapsed || Child == null) 248SD.Size preferredSize = Child.GetPreferredSize(constraintSize); 269if (this.Visibility == Visibility.Collapsed || Child == null) 281if ((Child.Size != targetSize) && ((finalSize != _priorConstraint) || scaled)) 284Child.Size = targetSize; 286Size returnSize = Convert.ToSystemWindowsSize(Child.Size, _currentScale, dpi.DpiScaleX, dpi.DpiScaleY); 315Control oldChild = Child; 329if (Child != null) 333Child.Margin = SWF.Padding.Empty; 334Child.Dock = DockStyle.None; 335Child.AutoSize = false; 336Child.Location = SD.Point.Empty; 351if (this.Child != null) 353this.Child.GotFocus += new EventHandler(this.OnChildGotFocus); 549if (Child != null) 551Child.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;