6 instantiations of Image
PresentationFramework (3)
src\Framework\System\Windows\Documents\FixedElement.cs (1)
308image = new Image();
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
5262bamlType.DefaultConstructor = delegate() { return new System.Windows.Controls.Image(); };
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
1323case KnownElements.Image: o = new System.Windows.Controls.Image(); break;
System.Activities.Presentation (3)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\manifestimages.cs (1)
299_image = new Image();
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Editors\ImageSourceToImageConverter.cs (1)
36Image image = new Image();
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\PropertyInspector.xaml.cs (1)
963Image image = new Image();
82 references to Image
PresentationFramework (78)
src\Framework\System\Windows\Automation\Peers\ImageAutomationPeer.cs (1)
21public ImageAutomationPeer(Image owner): base(owner)
src\Framework\System\Windows\Controls\Image.cs (17)
93/// <seealso cref="Image.StretchProperty" /> 116/// <seealso cref="Image.Source" /> 122typeof(Image), 142Viewbox.StretchProperty.AddOwner(typeof(Image)); 149Viewbox.StretchDirectionProperty.AddOwner(typeof(Image)); 160typeof(Image)); 176add { AddHandler(Image.DpiChangedEvent, value); } 177remove { RemoveHandler(Image.DpiChangedEvent, value); } 204RaiseEvent(new DpiChangedEventArgs(oldDpi, newDpi, Image.DpiChangedEvent, this)); 394StyleProperty.OverrideMetadata(typeof(Image), new FrameworkPropertyMetadata(style)); 402typeof(Image), 410typeof(Image), 416Image.DpiChangedEvent = Window.DpiChangedEvent.AddOwner(typeof(Image)); 423Style style = new Style(typeof(Image), null); 467Image image = (Image)d;
src\Framework\System\Windows\Documents\FixedDocument.cs (1)
526if (element is Glyphs || element is Image || (p != null && p.Fill is ImageBrush))
src\Framework\System\Windows\Documents\FixedDSBuilder.cs (1)
246fen.uiElement is Image)
src\Framework\System\Windows\Documents\FixedElement.cs (3)
227Image im = GetImage(); 302private Image GetImage() 304Image image = null; // return value
src\Framework\System\Windows\Documents\FixedHighlight.cs (2)
118Image im = _element as Image;
src\Framework\System\Windows\Documents\FixedSOMElement.cs (2)
100else if (uiElement is Image) 102element = FixedSOMImage.Create(page, uiElement as Image, fixedNode);
src\Framework\System\Windows\Documents\FixedSOMImage.cs (1)
54public static FixedSOMImage Create(FixedPage page, Image image, FixedNode fixedNode)
src\Framework\System\Windows\Documents\FixedSOMPageConstructor.cs (4)
257else if (obj is Image || 382Debug.Assert(obj is Image || obj is Path); 387Image image = obj as Image;
src\Framework\System\Windows\Documents\FixedTextBuilder.cs (4)
834return o is Image; 1332Debug.Assert(e is Image); 1333Image im = (Image)e;
src\Framework\System\Windows\Documents\FixedTextContainer.cs (1)
453if (o is Image || o is Path)
src\Framework\System\Windows\Documents\FixedTextView.cs (7)
110else if (e is Image) 112Image im = (Image)e; 223else if (element is Image) 225Image image = (Image)element; 474else if (element is Image || element is Path)
src\Framework\System\Windows\Documents\FlowPosition.cs (2)
260Image image = obj as Image;
src\Framework\System\windows\Documents\TextEditorCopyPaste.cs (2)
176Image image = This.Selection.GetUIElementSelected() as Image;
src\Framework\System\Windows\Documents\TextRange.cs (1)
1030internal void InsertImage(System.Windows.Controls.Image image)
src\Framework\System\Windows\Documents\TextRangeSerialization.cs (10)
561if ((inlineUIContainer == null || !(inlineUIContainer.Child is Image)) && 562(blockUIContainer == null || !(blockUIContainer.Child is Image))) 1180if (wpfPayload != null && embeddedObject is Image) 1183Image image = (Image)embeddedObject; 1192Type elementTypeStandardized = typeof(Image); 1205if (property != Image.SourceProperty) 1218xmlWriter.WriteStartElement(typeof(Image).Name + "." + Image.SourceProperty.Name); 1927if (inlineUIContainer != null && !(inlineUIContainer.Child is Image))
src\Framework\System\Windows\Documents\TextSchema.cs (3)
1160Image.SourceProperty, 1161Image.StretchProperty, 1162Image.StretchDirectionProperty,
src\Framework\System\Windows\Documents\WpfPayload.cs (5)
433private BitmapSource GetBitmapSourceFromImage(Image image) 464Image image = _images[imageIndex]; 511internal string AddImage(Image image) 530_images = new List<Image>(); 890private List<Image> _images;
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
373case 281: t = () => typeof(Image); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (6)
2959Type type = typeof(System.Windows.Controls.Image); 2960DependencyProperty dp = System.Windows.Controls.Image.SourceProperty; 2962this.GetXamlType(typeof(System.Windows.Controls.Image)), // DeclaringType 2976Type type = typeof(System.Windows.Controls.Image); 2977DependencyProperty dp = System.Windows.Controls.Image.StretchProperty; 2979this.GetXamlType(typeof(System.Windows.Controls.Image)), // DeclaringType
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
5260typeof(System.Windows.Controls.Image),
src\Framework\System\Windows\Markup\KnownTypes.cs (3)
1831return System.Windows.Controls.Image.SourceProperty; 1833return System.Windows.Controls.Image.StretchProperty; 5825case KnownElements.Image: t = typeof(System.Windows.Controls.Image); break;
System.Activities.Presentation (4)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\manifestimages.cs (1)
289private Image _image;
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Editors\ImageSourceToImageConverter.cs (1)
36Image image = new Image();
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\PropertyInspector.xaml.cs (2)
961private static Image GetEmbeddedImage(string imageName) 963Image image = new Image();