Grid 类
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
定义由列和行组成的灵活的网格区域。
public ref class Grid : System::Windows::Controls::Panel, System::Windows::Markup::IAddChild
public class Grid : System.Windows.Controls.Panel, System.Windows.Markup.IAddChild
type Grid = class
inherit Panel
interface IAddChild
Public Class Grid
Inherits Panel
Implements IAddChild
- 继承
- 派生
- 实现
示例
以下示例演示如何创建网格。 在这种情况下,网格定义三 ColumnDefinition 个元素和四 RowDefinition 个承载子内容的元素。
// Create the application's main window
mainWindow = new Window();
mainWindow.Title = "Grid Sample";
// Create the Grid
Grid myGrid = new Grid();
myGrid.Width = 250;
myGrid.Height = 100;
myGrid.HorizontalAlignment = HorizontalAlignment.Left;
myGrid.VerticalAlignment = VerticalAlignment.Top;
myGrid.ShowGridLines = true;
// Define the Columns
ColumnDefinition colDef1 = new ColumnDefinition();
ColumnDefinition colDef2 = new ColumnDefinition();
ColumnDefinition colDef3 = new ColumnDefinition();
myGrid.ColumnDefinitions.Add(colDef1);
myGrid.ColumnDefinitions.Add(colDef2);
myGrid.ColumnDefinitions.Add(colDef3);
// Define the Rows
RowDefinition rowDef1 = new RowDefinition();
RowDefinition rowDef2 = new RowDefinition();
RowDefinition rowDef3 = new RowDefinition();
RowDefinition rowDef4 = new RowDefinition();
myGrid.RowDefinitions.Add(rowDef1);
myGrid.RowDefinitions.Add(rowDef2);
myGrid.RowDefinitions.Add(rowDef3);
myGrid.RowDefinitions.Add(rowDef4);
// Add the first text cell to the Grid
TextBlock txt1 = new TextBlock();
txt1.Text = "2005 Products Shipped";
txt1.FontSize = 20;
txt1.FontWeight = FontWeights.Bold;
Grid.SetColumnSpan(txt1, 3);
Grid.SetRow(txt1, 0);
// Add the second text cell to the Grid
TextBlock txt2 = new TextBlock();
txt2.Text = "Quarter 1";
txt2.FontSize = 12;
txt2.FontWeight = FontWeights.Bold;
Grid.SetRow(txt2, 1);
Grid.SetColumn(txt2, 0);
// Add the third text cell to the Grid
TextBlock txt3 = new TextBlock();
txt3.Text = "Quarter 2";
txt3.FontSize = 12;
txt3.FontWeight = FontWeights.Bold;
Grid.SetRow(txt3, 1);
Grid.SetColumn(txt3, 1);
// Add the fourth text cell to the Grid
TextBlock txt4 = new TextBlock();
txt4.Text = "Quarter 3";
txt4.FontSize = 12;
txt4.FontWeight = FontWeights.Bold;
Grid.SetRow(txt4, 1);
Grid.SetColumn(txt4, 2);
// Add the sixth text cell to the Grid
TextBlock txt5 = new TextBlock();
Double db1 = new Double();
db1 = 50000;
txt5.Text = db1.ToString();
Grid.SetRow(txt5, 2);
Grid.SetColumn(txt5, 0);
// Add the seventh text cell to the Grid
TextBlock txt6 = new TextBlock();
Double db2 = new Double();
db2 = 100000;
txt6.Text = db2.ToString();
Grid.SetRow(txt6, 2);
Grid.SetColumn(txt6, 1);
// Add the final text cell to the Grid
TextBlock txt7 = new TextBlock();
Double db3 = new Double();
db3 = 150000;
txt7.Text = db3.ToString();
Grid.SetRow(txt7, 2);
Grid.SetColumn(txt7, 2);
// Total all Data and Span Three Columns
TextBlock txt8 = new TextBlock();
txt8.FontSize = 16;
txt8.FontWeight = FontWeights.Bold;
txt8.Text = "Total Units: " + (db1 + db2 + db3).ToString();
Grid.SetRow(txt8, 3);
Grid.SetColumnSpan(txt8, 3);
// Add the TextBlock elements to the Grid Children collection
myGrid.Children.Add(txt1);
myGrid.Children.Add(txt2);
myGrid.Children.Add(txt3);
myGrid.Children.Add(txt4);
myGrid.Children.Add(txt5);
myGrid.Children.Add(txt6);
myGrid.Children.Add(txt7);
myGrid.Children.Add(txt8);
// Add the Grid as the Content of the Parent Window Object
mainWindow.Content = myGrid;
mainWindow.Show ();
Public Sub New()
WindowTitle = "Grid Sample"
'Create a Grid as the root Panel element
Dim myGrid As New Grid()
myGrid.Height = 100
myGrid.Width = 250
myGrid.ShowGridLines = True
myGrid.HorizontalAlignment = Windows.HorizontalAlignment.Left
myGrid.VerticalAlignment = Windows.VerticalAlignment.Top
' Define and Add the Rows and Columns
Dim colDef1 As New ColumnDefinition
Dim colDef2 As New ColumnDefinition
Dim colDef3 As New ColumnDefinition
myGrid.ColumnDefinitions.Add(colDef1)
myGrid.ColumnDefinitions.Add(colDef2)
myGrid.ColumnDefinitions.Add(colDef3)
Dim rowDef1 As New RowDefinition
Dim rowDef2 As New RowDefinition
Dim rowDef3 As New RowDefinition
Dim rowDef4 As New RowDefinition
myGrid.RowDefinitions.Add(rowDef1)
myGrid.RowDefinitions.Add(rowDef2)
myGrid.RowDefinitions.Add(rowDef3)
myGrid.RowDefinitions.Add(rowDef4)
Dim txt1 As New TextBlock
txt1.Text = "2004 Products Shipped"
txt1.FontSize = 20
txt1.FontWeight = FontWeights.Bold
Grid.SetColumnSpan(txt1, 3)
Grid.SetRow(txt1, 0)
myGrid.Children.Add(txt1)
Dim txt2 As New TextBlock
txt2.Text = "Quarter 1"
txt2.FontSize = 12
txt2.FontWeight = FontWeights.Bold
Grid.SetRow(txt2, 1)
Grid.SetColumn(txt2, 0)
myGrid.Children.Add(txt2)
Dim txt3 As New TextBlock
txt3.Text = "Quarter 2"
txt3.FontSize = 12
txt3.FontWeight = FontWeights.Bold
Grid.SetRow(txt3, 1)
Grid.SetColumn(txt3, 1)
myGrid.Children.Add(txt3)
Dim txt4 As New TextBlock
txt4.Text = "Quarter 3"
txt4.FontSize = 12
txt4.FontWeight = FontWeights.Bold
Grid.SetRow(txt4, 1)
Grid.SetColumn(txt4, 2)
myGrid.Children.Add(txt4)
Dim txt5 As New TextBlock
txt5.Text = "50,000"
Grid.SetRow(txt5, 2)
Grid.SetColumn(txt5, 0)
myGrid.Children.Add(txt5)
Dim txt6 As New Controls.TextBlock
txt6.Text = "100,000"
Grid.SetRow(txt6, 2)
Grid.SetColumn(txt6, 1)
myGrid.Children.Add(txt6)
Dim txt7 As New TextBlock
txt7.Text = "150,000"
Grid.SetRow(txt7, 2)
Grid.SetColumn(txt7, 2)
myGrid.Children.Add(txt7)
' Add the final TextBlock Cell to the Grid
Dim txt8 As New TextBlock
txt8.FontSize = 16
txt8.FontWeight = FontWeights.Bold
txt8.Text = "Total Units: 300000"
Grid.SetRow(txt8, 3)
Grid.SetColumnSpan(txt8, 3)
myGrid.Children.Add(txt8)
Me.Content = myGrid
End Sub
<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" WindowTitle="Grid Sample">
<Grid VerticalAlignment="Top" HorizontalAlignment="Left" ShowGridLines="True" Width="250" Height="100">
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<TextBlock FontSize="20" FontWeight="Bold" Grid.ColumnSpan="3" Grid.Row="0">2005 Products Shipped</TextBlock>
<TextBlock FontSize="12" FontWeight="Bold" Grid.Row="1" Grid.Column="0">Quarter 1</TextBlock>
<TextBlock FontSize="12" FontWeight="Bold" Grid.Row="1" Grid.Column="1">Quarter 2</TextBlock>
<TextBlock FontSize="12" FontWeight="Bold" Grid.Row="1" Grid.Column="2">Quarter 3</TextBlock>
<TextBlock Grid.Row="2" Grid.Column="0">50000</TextBlock>
<TextBlock Grid.Row="2" Grid.Column="1">100000</TextBlock>
<TextBlock Grid.Row="2" Grid.Column="2">150000</TextBlock>
<TextBlock FontSize="16" FontWeight="Bold" Grid.ColumnSpan="3" Grid.Row="3">Total Units: 300000</TextBlock>
</Grid>
</Page>
注解
包含 Grid 对象的集合 UIElement ,这些对象位于 属性中 Children 。
在 中 Grid 定义的列和行可以利用 Star 大小调整来按比例分配剩余空间。 选择 作为行或列的高度或宽度时 Star ,该列或行接收剩余可用空间的加权比例。 这与 Auto相反,后者根据列或行中内容的大小均匀分配空间。 当使用可扩展应用程序标记语言 (XAML) 时,此值表示为 *
或 2*
。 在第一种情况下,行或列将接收一倍的可用空间,而在第二种情况下,行或列接收的可用空间是可用空间的两倍,依序排列。 通过将此方法与 和 VerticalAlignment 值Stretch
成比例地分配空间HorizontalAlignment,可以按屏幕空间的百分比对布局空间进行分区。
Grid 是唯一可以按此方式分配空间的布局面板。
默认情况下,行和列占用的空间最少,以容纳给定行或列中包含的任何单元格内的最大内容。 例如,如果列有一个单元格,其中包含一个长字(如“hippopotamus”),但该列中的所有其他单元格都具有较小的单词(如“狗”),则该列的宽度将是最大单词 (河马) 的宽度。
可以通过结合使用 Margin 属性和对齐属性来精确定位 的Grid子元素。
的 Grid 子元素按它们在标记或代码中的显示顺序绘制。 因此,当元素共享相同的坐标时,可以实现分层顺序 (也称为 z 顺序) 。
Grid 和 Table 共享一些常见功能,但每个功能都可以在适当的方案中应用,以更好地使用其内置功能。 Grid 基于行索引和列索引添加元素; Table 不。 元素 Grid 允许对内容进行分层,其中多个元素可以存在于单个单元格中。 Table 不支持分层。 的子元素 Grid 可以相对于其“单元”边界的左上角进行绝对定位。 Table 不支持此功能。 Grid 还提供比 Table更灵活的大小调整行为。
Grid GridLength使用 对象定义 或 ColumnDefinition的大小RowDefinition调整特征。 有关每个单元类型的定义,请参阅 GridUnitType。
如果将子元素添加到 中的 Grid列,并且该列的 Width 属性设置为 Auto
,则将不受限制地度量子元素。 此行为可以防止水平滚动条显示 ScrollViewer 是否正在使用 ,因为子元素被度量为未绑定。 出于显示目的,将剪裁而不是滚动子项。
默认情况下,面板元素不接收焦点。 若要强制面板元素接收焦点,请将 属性 Focusable 设置为 true
。
构造函数
Grid() |
初始化 Grid 的新实例。 |
字段
ColumnProperty |
标识 Column 附加属性。 |
ColumnSpanProperty |
标识 ColumnSpan 附加属性。 |
IsSharedSizeScopeProperty |
标识 IsSharedSizeScope 附加属性。 |
RowProperty |
标识 Row 附加属性。 |
RowSpanProperty |
标识 RowSpan 附加属性。 |
ShowGridLinesProperty |
标识 ShowGridLines 依赖项属性。 |
属性
ActualHeight |
获取此元素的呈现高度。 (继承自 FrameworkElement) |
ActualWidth |
获取此元素的呈现宽度。 (继承自 FrameworkElement) |
AllowDrop |
获取或设置一个值,该值指示此元素能否用作拖放操作的目标。 这是依赖项属性。 (继承自 UIElement) |
AreAnyTouchesCaptured |
获取一个值,该值指示在此元素上是否至少捕获了一次触摸。 (继承自 UIElement) |
AreAnyTouchesCapturedWithin |
获取一个值,该值指示在此元素或其可视化树中的任何子元素上是否至少捕获了一次触摸。 (继承自 UIElement) |
AreAnyTouchesDirectlyOver |
获取一个值,该值指示在此元素上是否至少按下了一次触摸设备。 (继承自 UIElement) |
AreAnyTouchesOver |
获取一个值,该值指示在此元素或其可视化树中的任何子元素上是否至少按下了一次触摸设备。 (继承自 UIElement) |
Background |
获取或设置用于填充 Brush 的边框之间的区域的 Panel。 (继承自 Panel) |
BindingGroup |
获取或设置用于该元素的 BindingGroup。 (继承自 FrameworkElement) |
BitmapEffect |
已过时.
已过时.
获取或设置一个位图效果,该效果将直接应用到此元素所呈现的内容。 这是依赖项属性。 (继承自 UIElement) |
BitmapEffectInput |
已过时.
已过时.
获取或设置位图效果的输入源,该效果将直接应用到此元素所呈现的内容。 这是依赖项属性。 (继承自 UIElement) |
CacheMode |
获取或设置 UIElement 的缓存表示形式。 (继承自 UIElement) |
Children |
获取此 UIElementCollection 的子元素的 Panel。 (继承自 Panel) |
Clip |
获取或设置用于定义元素内容轮廓的几何图形。 这是依赖项属性。 (继承自 UIElement) |
ClipToBounds |
获取或设置一个值,该值指示是否剪切此元素的内容(或来自此元素的子元素的内容)使其适合包含元素的大小。 这是依赖项属性。 (继承自 UIElement) |
ColumnDefinitions |
获取在 Grid 的实例上定义的 ColumnDefinitionCollection。 |
CommandBindings |
获取与此元素关联的 CommandBinding 对象的集合。 CommandBinding 为此元素启用命令处理,并声明命令、命令的事件和由此元素附加的处理程序之间的链接。 (继承自 UIElement) |
ContextMenu |
获取或设置上下文菜单元素,每当通过用户界面 (UI) 此元素内请求上下文菜单时,应显示该元素。 (继承自 FrameworkElement) |
Cursor |
获取或设置在鼠标指针位于此元素上时显示的光标。 (继承自 FrameworkElement) |
DataContext |
获取或设置元素参与数据绑定时的数据上下文。 (继承自 FrameworkElement) |
DefaultStyleKey |
获取或设置在使用或定义主题样式时要用于引用此控件样式的键。 (继承自 FrameworkElement) |
DependencyObjectType |
获取 DependencyObjectType 包装此实例的 CLR 类型的 。 (继承自 DependencyObject) |
DesiredSize |
获取在布局流程的度量传递过程中此元素计算所得的大小。 (继承自 UIElement) |
Dispatcher |
获取与此 Dispatcher 关联的 DispatcherObject。 (继承自 DispatcherObject) |
Effect |
获取或设置要应用于 UIElement 的位图效果。 这是依赖项属性。 (继承自 UIElement) |
FlowDirection |
获取或设置文本和其他用户界面 (UI) 元素在控制其布局的任何父元素内流动的方向。 (继承自 FrameworkElement) |
Focusable |
获取或设置一个值,该值指示元素能否得到焦点。 这是依赖项属性。 (继承自 UIElement) |
FocusVisualStyle |
获取或设置一个属性,该属性允许自定义此元素在捕获到键盘焦点时要应用于此元素的外观、效果或其他样式特征。 (继承自 FrameworkElement) |
ForceCursor |
获取或设置一个值,该值指示这是否 FrameworkElement 应强制用户界面 (UI) 呈现由 属性声明的 Cursor 光标。 (继承自 FrameworkElement) |
HasAnimatedProperties |
获取一个值,该值指示此元素是否具有任何进行动画处理的属性。 (继承自 UIElement) |
HasEffectiveKeyboardFocus |
获取一个值,该值指示 UIElement 是否具有焦点。 (继承自 UIElement) |
HasLogicalOrientation |
获取一个值,该值指示此 Panel 是否在单个维度中排列其子代。 (继承自 Panel) |
HasLogicalOrientationPublic |
获取一个值,该值指示此 Panel 是否在单个维度中排列其子代。 (继承自 Panel) |
Height |
获取或设置元素的建议高度。 (继承自 FrameworkElement) |
HorizontalAlignment |
获取或设置在父元素(如 Panel 或项控件)中组合此元素时所应用的水平对齐特征。 (继承自 FrameworkElement) |
InheritanceBehavior |
获取或设置属性值继承、资源键查找和RelativeSource FindAncestor 查找的范围限制。 (继承自 FrameworkElement) |
InputBindings |
获取与此元素关联的输入绑定的集合。 (继承自 UIElement) |
InputScope |
获取或设置此 FrameworkElement 使用的输入的上下文。 (继承自 FrameworkElement) |
InternalChildren |
获取子元素的 UIElementCollection。 (继承自 Panel) |
IsArrangeValid |
获取一个值,该值指示此元素布局中的子元素的计算大小和位置是否有效。 (继承自 UIElement) |
IsEnabled |
获取或设置一个值,该值指示是否在用户界面 (UI) 中启用此元素。 这是依赖项属性。 (继承自 UIElement) |
IsEnabledCore |
获取一个值,该值成为派生类中 IsEnabled 的返回值。 (继承自 UIElement) |
IsFocused |
获取一个值,该值确定此元素是否具有逻辑焦点。 这是依赖项属性。 (继承自 UIElement) |
IsHitTestVisible |
获取或设置一个值,该值声明是否可以返回此元素作为其呈现内容的某些部分的点击测试结果。 这是依赖项属性。 (继承自 UIElement) |
IsInitialized |
获取一个值,该值指示此元素是在 XAML 处理器处理期间初始化的,还是显式调用其 EndInit() 方法。 (继承自 FrameworkElement) |
IsInputMethodEnabled |
获取一个值,该值指示是否启用输入法系统(例如输入法编辑器 (输入法) )来处理此元素的输入。 (继承自 UIElement) |
IsItemsHost |
获取或设置一个值,该值指示这是 Panel 用户界面 (UI) 生成的项的 ItemsControl容器。 (继承自 Panel) |
IsKeyboardFocused |
获取一个值,该值表示该元素是否具有键盘焦点。 这是依赖项属性。 (继承自 UIElement) |
IsKeyboardFocusWithin |
获取一个值,该值指示键盘焦点是否位于元素或其可视化树子元素内的任意位置。 这是依赖项属性。 (继承自 UIElement) |
IsLoaded |
获取一个值,该值指示是否已加载此元素以供呈现。 (继承自 FrameworkElement) |
IsManipulationEnabled |
获取或设置一个值,该值指示是否对此 UIElement 启用操作事件。 (继承自 UIElement) |
IsMeasureValid |
获取一个值,该值指示布局测量返回的当前大小是否有效。 (继承自 UIElement) |
IsMouseCaptured |
获取一个值,该值指示此元素是否捕获了鼠标。 这是依赖项属性。 (继承自 UIElement) |
IsMouseCaptureWithin |
获取一个值,该值确定鼠标捕获是由此元素还是其可视化树中的子元素持有。 这是依赖项属性。 (继承自 UIElement) |
IsMouseDirectlyOver |
获取一个值,该值指示在考虑元素组合的情况下,鼠标指针的位置是否与命中测试结果相对应。 这是依赖项属性。 (继承自 UIElement) |
IsMouseOver |
获取一个值,该值指示鼠标指针是否位于此元素(包括可视化树中的子元素)的上方。 这是依赖项属性。 (继承自 UIElement) |
IsSealed |
获取一个值,该值指示此实例当前是否为密封的(只读)。 (继承自 DependencyObject) |
IsStylusCaptured |
获取一个值,该值表示此元素是否捕获了触笔。 这是依赖项属性。 (继承自 UIElement) |
IsStylusCaptureWithin |
获取一个值,该值确定触笔捕获是由此元素还是由元素边界内的元素及其可视化树持有。 这是依赖项属性。 (继承自 UIElement) |
IsStylusDirectlyOver |
获取一个值,该值指示在考虑元素组合的情况下,触笔的位置是否与命中测试结果相对应。 这是依赖项属性。 (继承自 UIElement) |
IsStylusOver |
获取一个值,该值指示触笔指针是否位于此元素(包括可视化子元素)的上方。 这是依赖项属性。 (继承自 UIElement) |
IsVisible |
获取一个值,该值指示此元素在用户界面 (UI) 中是否可见。 这是依赖项属性。 (继承自 UIElement) |
Language |
获取或设置应用于某个元素的本地化/全球化语言信息。 (继承自 FrameworkElement) |
LayoutTransform |
获取或设置在执行布局时应应用于此元素的图形转换。 (继承自 FrameworkElement) |
LogicalChildren |
获取一个可用于迭代此 Grid 的逻辑子级的枚举数。 |
LogicalOrientation |
如果面板支持只有一个维度的布局,则为面板的 Orientation。 (继承自 Panel) |
LogicalOrientationPublic |
如果面板支持只有一个维度的布局,则为面板的 Orientation。 (继承自 Panel) |
Margin |
获取或设置元素的外边距。 (继承自 FrameworkElement) |
MaxHeight |
获取或设置元素的最大高度约束。 (继承自 FrameworkElement) |
MaxWidth |
获取或设置元素的最大宽度约束。 (继承自 FrameworkElement) |
MinHeight |
获取或设置元素的最小高度约束。 (继承自 FrameworkElement) |
MinWidth |
获取或设置元素的最小宽度约束。 (继承自 FrameworkElement) |
Name |
获取或设置元素的标识名称。 该名称提供引用,以便代码隐藏(如事件处理程序代码)在 XAML 处理器处理期间构造标记元素后可以引用它。 (继承自 FrameworkElement) |
Opacity |
获取或设置在用户界面 (UI) 呈现时应用于整个 UIElement 的不透明度因子。 这是依赖项属性。 (继承自 UIElement) |
OpacityMask |
获取或设置一个作为 Brush 实现的不透明蒙板,该蒙板可应用到此元素所呈现内容的任何 Alpha 通道蒙板。 这是依赖项属性。 (继承自 UIElement) |
OverridesDefaultStyle |
获取或设置一个值,该值指示此元素是否并入主题样式中的样式属性。 (继承自 FrameworkElement) |
Parent |
获取此元素的逻辑父元素。 (继承自 FrameworkElement) |
PersistId |
已过时.
获取一个唯一标识此元素的值。 (继承自 UIElement) |
RenderSize |
获取(或设置)此元素的最终呈现大小。 (继承自 UIElement) |
RenderTransform |
获取或设置影响此元素的呈现位置的转换信息。 这是依赖项属性。 (继承自 UIElement) |
RenderTransformOrigin |
获取或设置由 RenderTransform 声明的任何可能呈现转换的中心点,相对于元素的边界。 这是依赖项属性。 (继承自 UIElement) |
Resources |
获取或设置本地定义的资源字典。 (继承自 FrameworkElement) |
RowDefinitions |
获取在 Grid 的实例上定义的 RowDefinitionCollection。 |
ShowGridLines |
获取或设置一个值,该值指示网格线在此 Grid 中是否可见。 |
SnapsToDevicePixels |
获取或设置一个值,该值确定在呈现过程中,此元素的呈现是否应使用特定于设备的像素设置。 这是依赖项属性。 (继承自 UIElement) |
Style |
获取或设置此元素呈现时所使用的样式。 (继承自 FrameworkElement) |
StylusPlugIns |
获取与此元素关联的所有触笔插件(自定义)对象的集合。 (继承自 UIElement) |
Tag |
获取或设置任意对象值,该值可用于存储关于此元素的自定义信息。 (继承自 FrameworkElement) |
TemplatedParent |
获取对此元素的模板父级的引用。 如果该元素不是通过模板创建的,则此属性无关。 (继承自 FrameworkElement) |
ToolTip |
获取或设置用户界面 (UI) 中为此元素显示的工具提示对象。 (继承自 FrameworkElement) |
TouchesCaptured |
获取在此元素上捕获的所有触摸设备。 (继承自 UIElement) |
TouchesCapturedWithin |
获取在此元素或其可视化树中的任何子元素上捕获的所有触摸设备。 (继承自 UIElement) |
TouchesDirectlyOver |
获取此元素上的所有触摸设备。 (继承自 UIElement) |
TouchesOver |
获取在此元素或其可视化树中的任何子元素上的所有触摸设备。 (继承自 UIElement) |
Triggers |
获取直接在此元素上或在子元素中建立的触发器的集合。 (继承自 FrameworkElement) |
Uid |
获取或设置此元素的唯一标识符(用于本地化)。 这是依赖项属性。 (继承自 UIElement) |
UseLayoutRounding |
获取或设置一个值,该值指示是否应向此元素的大小和位置布局应用布局舍入。 (继承自 FrameworkElement) |
VerticalAlignment |
获取或设置在父元素(如面板或项控件)中组合此元素时所应用的垂直对齐特征。 (继承自 FrameworkElement) |
Visibility |
获取或设置用户界面 (UI) 此元素的可见性。 这是依赖项属性。 (继承自 UIElement) |
VisualBitmapEffect |
已过时.
已过时.
获取或设置 BitmapEffect 的 Visual 值。 (继承自 Visual) |
VisualBitmapEffectInput |
已过时.
已过时.
获取或设置 BitmapEffectInput 的 Visual 值。 (继承自 Visual) |
VisualBitmapScalingMode |
获取或设置 BitmapScalingMode 的 Visual。 (继承自 Visual) |
VisualCacheMode |
获取或设置 Visual 的缓存表示形式。 (继承自 Visual) |
VisualChildrenCount | |
VisualClearTypeHint |
获取或设置 ClearTypeHint,它确定在 Visual 中呈现 ClearType 的方式。 (继承自 Visual) |
VisualClip |
获取或设置 Visual 的剪辑区域作为 Geometry 值。 (继承自 Visual) |
VisualEdgeMode |
获取或设置 Visual 的边缘模式作为 EdgeMode 值。 (继承自 Visual) |
VisualEffect |
获取或设置要应用于 Visual 的位图效果。 (继承自 Visual) |
VisualOffset |
获取或设置可视对象的偏移量值。 (继承自 Visual) |
VisualOpacity |
获取或设置 Visual 的不透明度。 (继承自 Visual) |
VisualOpacityMask |
获取或设置 Brush 值,该值表示 Visual 的不透明蒙板。 (继承自 Visual) |
VisualParent |
获取可视对象的可视化树父级。 (继承自 Visual) |
VisualScrollableAreaClip |
获取或设置 Visual 的剪辑的可滚动区域。 (继承自 Visual) |
VisualTextHintingMode |
获取或设置 Visual 的 TextHintingMode。 (继承自 Visual) |
VisualTextRenderingMode |
获取或设置 Visual 的 TextRenderingMode。 (继承自 Visual) |
VisualTransform | (继承自 Visual) |
VisualXSnappingGuidelines |
获取或设置 x 坐标(垂直)准线集合。 (继承自 Visual) |
VisualYSnappingGuidelines |
获取或设置 Y 坐标(水平)准线集合。 (继承自 Visual) |
Width |
获取或设置元素的宽度。 (继承自 FrameworkElement) |
附加属性
Column |
获取或设置一个值,该值表示应显示 Grid 中的子内容的列。 |
ColumnSpan |
获取或设置一个值,该值指示 Grid 中的子内容所跨越的总列数。 |
IsSharedSizeScope |
获取或设置一个值,该值指示多个 Grid 元素共享大小信息。 |
Row |
获取或设置一个值,该值指示应显示 Grid 中的哪个子内容行。 |
RowSpan |
获取或设置一个值,该值表示在一个 Grid 中子内容所跨越的总行数。 |
方法
事件
ContextMenuClosing |
在元素上的任何上下文菜单关闭之前发生。 (继承自 FrameworkElement) |
ContextMenuOpening |
在元素上的任何上下文菜单打开时发生。 (继承自 FrameworkElement) |
DataContextChanged |
在此元素的数据上下文更改时发生。 (继承自 FrameworkElement) |
DragEnter |
在输入系统报告出现以此元素为拖动目标的基础拖动事件时发生。 (继承自 UIElement) |
DragLeave |
在输入系统报告出现以此元素为拖动起点的基础拖动事件时发生。 (继承自 UIElement) |
DragOver |
在输入系统报告出现以此元素为可能放置目标的基础拖动事件时发生。 (继承自 UIElement) |
Drop |
在输入系统报告出现将此元素作为放置目标的基础放置事件时发生。 (继承自 UIElement) |
FocusableChanged |
当 Focusable 属性的值更改时发生。 (继承自 UIElement) |
GiveFeedback |
在输入系统报告出现涉及此元素的基础拖放操作时发生。 (继承自 UIElement) |
GotFocus |
在此元素获得逻辑焦点时发生。 (继承自 UIElement) |
GotKeyboardFocus |
在此元素聚焦于键盘时发生。 (继承自 UIElement) |
GotMouseCapture |
在此元素捕获鼠标时发生。 (继承自 UIElement) |
GotStylusCapture |
在此元素捕获触笔时发生。 (继承自 UIElement) |
GotTouchCapture |
在此元素上捕获触摸屏输入时发生。 (继承自 UIElement) |
Initialized |
初始化此 FrameworkElement 时发生。 此事件与 IsInitialized 属性的值从 |
IsEnabledChanged |
在此元素的 IsEnabled 属性值更改时发生。 (继承自 UIElement) |
IsHitTestVisibleChanged |
在此元素的 IsHitTestVisible 依赖项属性值更改时发生。 (继承自 UIElement) |
IsKeyboardFocusedChanged |
在此元素的 IsKeyboardFocused 属性值更改时发生。 (继承自 UIElement) |
IsKeyboardFocusWithinChanged |
在此元素的 IsKeyboardFocusWithin 属性值更改时发生。 (继承自 UIElement) |
IsMouseCapturedChanged |
在此元素的 IsMouseCaptured 属性值更改时发生。 (继承自 UIElement) |
IsMouseCaptureWithinChanged |
在此元素的 IsMouseCaptureWithinProperty 值更改时发生。 (继承自 UIElement) |
IsMouseDirectlyOverChanged |
在此元素的 IsMouseDirectlyOver 属性值更改时发生。 (继承自 UIElement) |
IsStylusCapturedChanged |
在此元素的 IsStylusCaptured 属性值更改时发生。 (继承自 UIElement) |
IsStylusCaptureWithinChanged |
在此元素的 IsStylusCaptureWithin 属性值更改时发生。 (继承自 UIElement) |
IsStylusDirectlyOverChanged |
在此元素的 IsStylusDirectlyOver 属性值更改时发生。 (继承自 UIElement) |
IsVisibleChanged |
在此元素的 IsVisible 属性值更改时发生。 (继承自 UIElement) |
KeyDown |
当焦点在该元素上时按下某个键后发生。 (继承自 UIElement) |
KeyUp |
当焦点在该元素上时松开某个键后发生。 (继承自 UIElement) |
LayoutUpdated |
在与当前 Dispatcher 关联的各种可视元素的布局更改时发生。 (继承自 UIElement) |
Loaded |
当对元素进行布局、呈现,且可将其用于交互时发生。 (继承自 FrameworkElement) |
LostFocus |
在此元素丢失逻辑焦点时发生。 (继承自 UIElement) |
LostKeyboardFocus |
在此元素不再聚焦于键盘时发生。 (继承自 UIElement) |
LostMouseCapture |
在此元素丢失鼠标捕获时发生。 (继承自 UIElement) |
LostStylusCapture |
在此元素丢失触笔捕获时发生。 (继承自 UIElement) |
LostTouchCapture |
在此元素失去触摸屏输入捕获时发生。 (继承自 UIElement) |
ManipulationBoundaryFeedback |
当操作遇到边界时发生。 (继承自 UIElement) |
ManipulationCompleted |
对于 UIElement 对象的操作和延时完毕时发生。 (继承自 UIElement) |
ManipulationDelta |
当输入设备在操作期间更改位置时发生。 (继承自 UIElement) |
ManipulationInertiaStarting |
当输入设备在操作期间与 UIElement 对象失去联系且延时开始时发生。 (继承自 UIElement) |
ManipulationStarted |
当输入设备对 UIElement 对象开始操作时发生。 (继承自 UIElement) |
ManipulationStarting |
在首次创建操作处理器时发生。 (继承自 UIElement) |
MouseDown |
在指针位于此元素上并且按下任意鼠标按钮时发生。 (继承自 UIElement) |
MouseEnter |
在鼠标指针进入此元素的边界时发生。 (继承自 UIElement) |
MouseLeave |
在鼠标指针离开此元素的边界时发生。 (继承自 UIElement) |
MouseLeftButtonDown |
在鼠标指针位于此元素上并且按下鼠标左键时发生。 (继承自 UIElement) |
MouseLeftButtonUp |
在鼠标指针位于此元素上并且松开鼠标左键时发生。 (继承自 UIElement) |
MouseMove |
在鼠标指针位于此元素上并且移动鼠标指针时发生。 (继承自 UIElement) |
MouseRightButtonDown |
在鼠标指针位于此元素上并且按下鼠标右键时发生。 (继承自 UIElement) |
MouseRightButtonUp |
在鼠标指针位于此元素上并且松开鼠标右键时发生。 (继承自 UIElement) |
MouseUp |
在鼠标指针位于此元素上并且松开任意鼠标按钮时发生。 (继承自 UIElement) |
MouseWheel |
在鼠标指针位于此元素上并且用户滚动鼠标滚轮时发生。 (继承自 UIElement) |
PreviewDragEnter |
在输入系统报告出现以此元素为拖动目标的基础拖动事件时发生。 (继承自 UIElement) |
PreviewDragLeave |
在输入系统报告出现以此元素为拖动起点的基础拖动事件时发生。 (继承自 UIElement) |
PreviewDragOver |
在输入系统报告出现以此元素为可能放置目标的基础拖动事件时发生。 (继承自 UIElement) |
PreviewDrop |
在输入系统报告出现将此元素作为放置目标的基础放置事件时发生。 (继承自 UIElement) |
PreviewGiveFeedback |
在开始拖放操作时发生。 (继承自 UIElement) |
PreviewGotKeyboardFocus |
在此元素聚焦于键盘时发生。 (继承自 UIElement) |
PreviewKeyDown |
当焦点在该元素上时按下某个键后发生。 (继承自 UIElement) |
PreviewKeyUp |
当焦点在该元素上时松开某个键后发生。 (继承自 UIElement) |
PreviewLostKeyboardFocus |
在此元素不再聚焦于键盘时发生。 (继承自 UIElement) |
PreviewMouseDown |
在指针位于此元素上并且按下任意鼠标按钮时发生。 (继承自 UIElement) |
PreviewMouseLeftButtonDown |
在鼠标指针位于此元素上并且按下鼠标左键时发生。 (继承自 UIElement) |
PreviewMouseLeftButtonUp |
在鼠标指针位于此元素上并且松开鼠标左键时发生。 (继承自 UIElement) |
PreviewMouseMove |
在鼠标指针位于此元素上并且移动鼠标指针时发生。 (继承自 UIElement) |
PreviewMouseRightButtonDown |
在鼠标指针位于此元素上并且按下鼠标右键时发生。 (继承自 UIElement) |
PreviewMouseRightButtonUp |
在鼠标指针位于此元素上并且松开鼠标右键时发生。 (继承自 UIElement) |
PreviewMouseUp |
在鼠标指针位于此元素上并且松开任意鼠标按钮时发生。 (继承自 UIElement) |
PreviewMouseWheel |
在鼠标指针位于此元素上并且用户滚动鼠标滚轮时发生。 (继承自 UIElement) |
PreviewQueryContinueDrag |
在拖放操作期间键盘或鼠标按钮的状态改变时发生。 (继承自 UIElement) |
PreviewStylusButtonDown |
在指针位于此元素上并且按下触笔按钮时发生。 (继承自 UIElement) |
PreviewStylusButtonUp |
在指针位于此元素上并且松开触笔按钮时发生。 (继承自 UIElement) |
PreviewStylusDown |
当触笔位于元素上且触及数字化器时发生。 (继承自 UIElement) |
PreviewStylusInAirMove |
在触笔掠过元素但并未实际接触数字化器时发生。 (继承自 UIElement) |
PreviewStylusInRange |
在触笔位于此元素上并且触笔与数字化器之间的距离近到足以检测到触笔时发生。 (继承自 UIElement) |
PreviewStylusMove |
在触笔位于元素上并且移动触笔时发生。 数字化器在检测触笔时,触笔必须处于移动状态才会引发此事件,否则将改为引发 PreviewStylusInAirMove。 (继承自 UIElement) |
PreviewStylusOutOfRange |
在触笔与数字化仪之间的距离太远以致无法检测到触笔时发生。 (继承自 UIElement) |
PreviewStylusSystemGesture |
在用户采用某一种触笔笔势时发生。 (继承自 UIElement) |
PreviewStylusUp |
当触笔位于此元素上并且用户将触笔抬离数字化器时发生。 (继承自 UIElement) |
PreviewTextInput |
在此元素以设备无关模式获取文本时发生。 (继承自 UIElement) |
PreviewTouchDown |
当悬停在此元素上方的手指触摸屏幕时发生。 (继承自 UIElement) |
PreviewTouchMove |
当悬停在此元素上方的手指在屏幕上移动时发生。 (继承自 UIElement) |
PreviewTouchUp |
当悬停在此元素上方的手指从屏幕上移开时发生。 (继承自 UIElement) |
QueryContinueDrag |
在拖放操作期间键盘或鼠标按钮的状态改变时发生。 (继承自 UIElement) |
QueryCursor |
当请求显示光标时发生。 每次鼠标指针移至新位置时都会在一个元素上引发此事件,这意味着光标对象可能需要根据其新位置进行更改。 (继承自 UIElement) |
RequestBringIntoView |
当在此元素上调用 BringIntoView(Rect) 时发生。 (继承自 FrameworkElement) |
SizeChanged |
当此元素上的 ActualHeight 或 ActualWidth 属性的值发生更改时发生。 (继承自 FrameworkElement) |
SourceUpdated |
当此元素上的任何现有属性绑定的源值发生更改时发生。 (继承自 FrameworkElement) |
StylusButtonDown |
在指针位于此元素上并且按下触笔按钮时发生。 (继承自 UIElement) |
StylusButtonUp |
在指针位于此元素上并且松开触笔按钮时发生。 (继承自 UIElement) |
StylusDown |
在触笔位于此元素上且同时触及数字化器时发生。 (继承自 UIElement) |
StylusEnter |
在触笔进入此元素的边界时发生。 (继承自 UIElement) |
StylusInAirMove |
在触笔掠过元素但并未实际接触数字化器时发生。 (继承自 UIElement) |
StylusInRange |
在触笔位于此元素上并且触笔与数字化器之间的距离近到足以检测到触笔时发生。 (继承自 UIElement) |
StylusLeave |
在触笔离开元素的边界时发生。 (继承自 UIElement) |
StylusMove |
在触笔移到此元素上时发生。 触笔必须在位于数字化器上时移动,才会引发此事件。 否则将改为引发 StylusInAirMove。 (继承自 UIElement) |
StylusOutOfRange |
在触笔位于此元素上并且触笔与数字化器之间的距离太远以致无法检测到触笔时发生。 (继承自 UIElement) |
StylusSystemGesture |
在用户采用某一种触笔笔势时发生。 (继承自 UIElement) |
StylusUp |
当触笔位于此元素上并且用户将触笔抬离数字化器时发生。 (继承自 UIElement) |
TargetUpdated |
当此元素上的任何属性绑定的目标值发生更改时发生。 (继承自 FrameworkElement) |
TextInput |
在此元素以设备无关模式获取文本时发生。 (继承自 UIElement) |
ToolTipClosing |
在元素上的任何工具提示关闭之前发生。 (继承自 FrameworkElement) |
ToolTipOpening |
在元素上的任何工具提示打开时发生。 (继承自 FrameworkElement) |
TouchDown |
当悬停在此元素上方的手指触摸屏幕时发生。 (继承自 UIElement) |
TouchEnter |
在触摸屏输入从此元素边界外部移动到其内部时发生。 (继承自 UIElement) |
TouchLeave |
在触摸屏输入从此元素边界内部移动到其外部时发生。 (继承自 UIElement) |
TouchMove |
当悬停在此元素上方的手指在屏幕上移动时发生。 (继承自 UIElement) |
TouchUp |
当悬停在此元素上方的手指从屏幕上移开时发生。 (继承自 UIElement) |
Unloaded |
当从加载的元素的元素树中移除元素时发生。 (继承自 FrameworkElement) |
显式接口实现
IAddChild.AddChild(Object) |
此类型或成员支持 Windows Presentation Foundation (WPF) 基础结构,并且不应在代码中直接使用。 |
IAddChild.AddText(String) |
此类型或成员支持 Windows Presentation Foundation (WPF) 基础结构,并且不应在代码中直接使用。 |
IQueryAmbient.IsAmbientPropertyAvailable(String) |
有关此成员的说明,请参见 IsAmbientPropertyAvailable(String) 方法。 (继承自 FrameworkElement) |