14 references to ColumnProperty
PresentationFramework (14)
src\Framework\System\Windows\Automation\Peers\CalendarAutomationPeer.cs (1)
395int childColumn = (int)child.GetValue(Grid.ColumnProperty);
src\Framework\System\Windows\Automation\Peers\DateTimeAutomationPeer.cs (1)
621return (int)owningButton.GetValue(Grid.ColumnProperty);
src\Framework\System\Windows\Controls\Grid.cs (2)
172element.SetValue(ColumnProperty, value); 188return ((int)element.GetValue(ColumnProperty));
src\Framework\System\Windows\Controls\GridSplitter.cs (1)
530splitterIndex = (int)GetValue(_resizeData.ResizeDirection == GridResizeDirection.Columns ? Grid.ColumnProperty : Grid.RowProperty);
src\Framework\System\Windows\Controls\Primitives\CalendarItem.cs (3)
963titleCell.SetValue(Grid.ColumnProperty, i); 975dayCell.SetValue(Grid.ColumnProperty, j); 1001monthCell.SetValue(Grid.ColumnProperty, j);
src\Framework\System\Windows\Controls\ScrollViewer.cs (4)
2750content.SetValue(Grid.ColumnProperty, 0); 2758hsb.SetValue(Grid.ColumnProperty, 0); 2768vsb.SetValue(Grid.ColumnProperty, 1); 2778corner.SetValue(Grid.ColumnProperty, 1);
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
2721DependencyProperty dp = System.Windows.Controls.Grid.ColumnProperty;
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
1803return System.Windows.Controls.Grid.ColumnProperty;