2 types derived from Canvas
PresentationFramework (2)
6 instantiations of Canvas
IdeBenchmarks (1)
Microsoft.VisualStudio.LanguageServices (1)
PresentationFramework (3)
PresentationUI (1)
92 references to Canvas
IdeBenchmarks (2)
Microsoft.CodeAnalysis.EditorFeatures.Wpf (8)
Microsoft.VisualStudio.LanguageServices (4)
PresentationFramework (73)
System\Windows\Controls\Canvas.cs (14)
70/// <seealso cref="Canvas.LeftProperty" />
84/// <seealso cref="Canvas.LeftProperty" />
96/// <seealso cref="Canvas.TopProperty" />
110/// <seealso cref="Canvas.TopProperty" />
122/// <seealso cref="Canvas.RightProperty" />
136/// <seealso cref="Canvas.RightProperty" />
148/// <seealso cref="Canvas.BottomProperty" />
162/// <seealso cref="Canvas.BottomProperty" />
190Canvas p = VisualTreeHelper.GetParent(uie) as Canvas;
203= DependencyProperty.RegisterAttached("Left", typeof(double), typeof(Canvas),
214= DependencyProperty.RegisterAttached("Top", typeof(double), typeof(Canvas),
226= DependencyProperty.RegisterAttached("Right", typeof(double), typeof(Canvas),
237= DependencyProperty.RegisterAttached("Bottom", typeof(double), typeof(Canvas),
System\Windows\Controls\Slider.cs (8)
997Canvas.SetLeft(rangeElement, (thumbSize.Width * 0.5) + Math.Max(Maximum - SelectionEnd, 0) * valueToSize);
1001Canvas.SetLeft(rangeElement, (thumbSize.Width * 0.5) + Math.Max(SelectionStart - Minimum, 0) * valueToSize);
1019Canvas.SetTop(rangeElement, (thumbSize.Height * 0.5) + Math.Max(SelectionStart - Minimum, 0) * valueToSize);
1023Canvas.SetTop(rangeElement, (thumbSize.Height * 0.5) + Math.Max(Maximum - SelectionEnd,0) * valueToSize);
1064Canvas.SetRight(rangeElement, (thumbSize.Width * 0.5));
1068Canvas.SetLeft(rangeElement, (thumbSize.Width * 0.5));
1087Canvas.SetTop(rangeElement, (thumbSize.Height * 0.5));
1091Canvas.SetBottom(rangeElement, (thumbSize.Height * 0.5));
PresentationUI (1)
System.Windows.Controls.Ribbon (4)