DataGrid 類別
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
表示以可自訂方格顯示資料的控制項。
public ref class DataGrid : System::Windows::Controls::Primitives::MultiSelector
public class DataGrid : System.Windows.Controls.Primitives.MultiSelector
type DataGrid = class
inherit MultiSelector
Public Class DataGrid
Inherits MultiSelector
- 繼承
範例
下列範例示範如何將 系結 DataGrid 至 DataTable ,並使用資料行自動產生。 會 DataTable 使用 Fill 的 方法 DataAdapter 從 DataSet 填入 。 如需詳細資訊,請參閱從 DataAdapter建立資料集和填入 DataSet。 若要使用適用于 Visual Studio 的 WPF Designer,請參閱將 WPF 控制項系結至 Visual Studio 中的資料。
<DataGrid x:Name="CustomerGrid" ItemsSource="{Binding}" AlternatingRowBackground="LightBlue" AlternationCount="2" />
//Set the DataGrid's DataContext to be a filled DataTable
CustomerGrid.DataContext = custDataTable;
'Set the DataGrid's DataContext to be a filled DataTable
CustomerGrid.DataContext = custDataTable
下列範例示範如何使用自訂 Columns 集合建立 DataGrid 。
<NavigationWindow x:Class="DataGrid_CustomColumns.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:core="clr-namespace:System;assembly=mscorlib"
xmlns:local="clr-namespace:DataGrid_CustomColumns"
Title="Customers" Height="300" Width="300" ShowsNavigationUI="False" >
<NavigationWindow.Resources>
<!--Create list of enumeration values-->
<ObjectDataProvider x:Key="myEnum" MethodName="GetValues" ObjectType="{x:Type core:Enum}">
<ObjectDataProvider.MethodParameters>
<x:Type Type="local:OrderStatus"/>
</ObjectDataProvider.MethodParameters>
</ObjectDataProvider>
<!--Create an instance of the converter for Email-->
<local:EmailConverter x:Key="EmailConverter" />
</NavigationWindow.Resources>
<NavigationWindow.Content>
<Grid>
<DataGrid Name="DG1" ItemsSource="{Binding}" AutoGenerateColumns="False" >
<DataGrid.Columns>
<DataGridTextColumn Header="First Name" Binding="{Binding FirstName}"/>
<DataGridTextColumn Header="Last Name" Binding="{Binding LastName}" />
<!--The Email property contains a URI. For example "mailto:lucy0@adventure-works.com"-->
<DataGridHyperlinkColumn Header="Email" Binding="{Binding Email}" ContentBinding="{Binding Email, Converter={StaticResource EmailConverter}}" />
<DataGridCheckBoxColumn Header="Member?" Binding="{Binding IsMember}" />
<DataGridComboBoxColumn Header="Order Status" SelectedItemBinding="{Binding Status}" ItemsSource="{Binding Source={StaticResource myEnum}}" />
</DataGrid.Columns>
</DataGrid>
</Grid>
</NavigationWindow.Content>
</NavigationWindow>
//Additional using statements
using System.Data;
using System.Windows.Data;
using System.Windows.Navigation;
'Additional using statements
Imports System.Data
Imports System.Collections.ObjectModel
Imports System.Diagnostics
public partial class Window1 : NavigationWindow
{
Class Window1
public Window1()
{
InitializeComponent();
//GetData() creates a collection of Customer data from a database
ObservableCollection<Customer> custdata = GetData();
//Bind the DataGrid to the customer data
DG1.DataContext = custdata;
}
Public Sub New()
' This call is required by the Windows Form Designer.
InitializeComponent()
' Add any initialization after the InitializeComponent() call.
'GetData() creates a collection of Customer data from a database
Dim custdata As ObservableCollection(Of Customer) = GetData()
'Bind the DataGrid to the customer data
DG1.DataContext = custdata
End Sub
//Defines the customer object
public class Customer
{
public string FirstName { get; set; }
public string LastName { get; set; }
public Uri Email { get; set; }
public bool IsMember { get; set; }
public OrderStatus Status { get; set; }
}
'Defines the customer object
Public Class Customer
Public Property FirstName() As String
Public Property LastName() As String
Public Property Email() As Uri
Public Property IsMember() As Boolean
Public Property Status() As OrderStatus
End Class
}
End Class
public enum OrderStatus { None, New, Processing, Shipped, Received };
Public Enum OrderStatus
None
[New]
Processing
Shipped
Received
End Enum
//Converts the mailto uri to a string with just the customer alias
public class EmailConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
if (value != null)
{
string email = value.ToString();
int index = email.IndexOf("@");
string alias = email.Substring(7, index-7);
return alias;
}
else
{
string email = "";
return email;
}
}
public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
Uri email = new Uri((string)value);
return email;
}
}
'Converts the mailto uri to a string with just the customer alias
Public Class EmailConverter
Implements IValueConverter
Public Function Convert(value As Object, targetType As System.Type, parameter As Object, culture As System.Globalization.CultureInfo) As Object Implements System.Windows.Data.IValueConverter.Convert
If value IsNot Nothing Then
Dim email As String = value.ToString()
Dim index As Integer = email.IndexOf("@")
Dim [alias] As String = email.Substring(7, index - 7)
Return [alias]
Else
Dim email As String = ""
Return email
End If
End Function
Public Function ConvertBack(value As Object, targetType As System.Type, parameter As Object, culture As System.Globalization.CultureInfo) As Object Implements System.Windows.Data.IValueConverter.ConvertBack
Dim email As New Uri(DirectCast(value, String))
Return email
End Function
End Class
備註
控制項 DataGrid 提供彈性的方式,以在資料列和資料行中顯示資料的集合。 包含 DataGrid 內建資料行類型和用於裝載自訂內容的範本資料行。 內建資料列類型包含下拉式詳細資料區段,可讓您用來在儲存格值下方顯示其他內容。
系結至資料
若要將 DataGrid 系結至資料,請將 ItemsSource 屬性設定為 實作 IEnumerable 。 資料格中的每個資料列都會系結至資料來源中的物件,而資料格中的每個資料行都會系結至資料物件的 屬性。 為了讓 DataGrid 使用者介面在來源資料中加入或移除專案時自動更新, DataGrid 必須將 系結至實作 介面的 INotifyCollectionChanged 集合,例如 ObservableCollection<T> 。 若要自動反映屬性變更,來源集合中的物件必須實作 INotifyPropertyChanged 介面。 如需詳細資訊,請參閱 資料系結 (WPF) 。
資料行
根據預設, DataGrid 控制項會在您設定 屬性時自動產生資料行 ItemsSource 。 產生的資料行類型取決於資料行中的資料型別。 下表列出產生的資料行類型。
產生的資料行類型 | 資料類型 |
---|---|
DataGridTextColumn | String |
DataGridCheckBoxColumn | Boolean |
DataGridComboBoxColumn | Enum |
DataGridHyperlinkColumn | Uri |
下圖顯示每個資料行類型。
自動產生資料行時,您可以處理 AutoGeneratingColumn 事件,以在將資料行加入至 DataGrid 之前自訂或取消資料行。 如果您同時將使用者定義的資料行和自動產生的資料行新增至 DataGrid ,則會先新增使用者定義的資料行。 若要重新排列資料行的顯示順序,您可以設定 DisplayIndex 個別資料行的 屬性。
您可以將 屬性設定 AutoGenerateColumns 為 false
,以防止自動產生資料行。 如果您想要明確建立和設定所有資料行,這非常有用。
DataGridTemplateColumn如果內建資料行類型不符合您的需求,請使用 類型來定義自訂資料行。 此 DataGridTemplateColumn 類型提供 CellTemplate 和 CellEditingTemplate 屬性,可讓您同時指定顯示和編輯模式的內容範本。 例如,您可以定義日期的自訂資料行。 CellTemplate可以定義 TextBlock 以顯示日期的 ,而且 CellEditingTemplate 可以定義 DatePicker 控制項來編輯日期。
您可以使用 Columns 集合,在執行時間以程式設計方式加入、插入、移除和變更 控制項中的任何資料行。 IsAutoGenerated檢查 屬性,以判斷資料行是否為自動產生或使用者定義。 自動產生的資料行會在變更時 ItemsSource 自動新增、移除或重新產生。
選項
根據預設,當使用者按一下 中的資料 DataGrid 格時,會選取整個資料列,而且使用者可以選取多個資料列。 您可以設定 SelectionUnit 屬性來指定使用者是否可以選取儲存格、完整資料列或兩者。 SelectionMode設定 屬性以指定可以選取多個資料列或儲存格,還是只能選取單一資料列或儲存格。
您可以取得從 SelectedCells 屬性選取之儲存格的相關資訊。 您可以取得事件中 SelectedCellsChangedEventArgsSelectedCellsChanged 選取範圍已變更之儲存格的相關資訊。 SelectAllCells呼叫 或 UnselectAllCells 方法,以程式設計方式選取或取消選取所有儲存格。 如需詳細資訊,請參閱 DataGrid 控制項中的預設鍵盤和滑鼠行為。
群組、排序和篩選
根據預設,您可以按一下資料行標頭來排序 中的 DataGrid 專案。 您可以藉由處理 Sorting 事件來自訂排序。 若要取消預設排序,請將 Handled 屬性設定為 true
。 您也可以先排序來源資料,再顯示在 中 DataGrid 。
若要將 中的 DataGrid 資料分組、排序及篩選,您可以將 系結 DataGrid 至 ICollectionView 支援這些作業的實作。 接著,您會在集合檢視上執行作業。 當 專案分組在 中 DataGrid 時,您可以定義 GroupStyle ,以指定每個群組的外觀。 您可以將它新增至 GroupStyle 的集合, DataGrid 以套用 GroupStyle 。 如果您有多個群組層級,您可以將不同的樣式套用至每個群組層級。 樣式會依照定義樣式的順序套用。 如需詳細資訊,請參閱 如何:在 DataGrid 控制項中分組、排序和篩選資料。
編輯中
根據預設,您可以直接在 中 DataGrid 編輯專案。 若要保證可以正確認可和取消編輯,中的 DataGrid 物件必須實作 IEditableObject 介面。 或者,您可以將 屬性設定 IsReadOnly 為 true
,以停用 中的 DataGrid 編輯。
DataGrid具有下列編輯命令的內建支援:
Command | 預設輸入系結 |
---|---|
BeginEditCommand | F2 |
CancelEditCommand | ESC |
CommitEditCommand | ENTER |
DeleteCommand | 刪除 |
您可以按一下目前儲存格或按 F2,將目前儲存格放入編輯模式。 當您移至相同資料列中的另一個儲存格,或在儲存格處於編輯模式時按 ENTER 鍵時,就會認可資料格層級編輯。 當您移至另一個資料列或在資料列處於編輯模式時按 ENTER 鍵時,會認可資料列中的所有編輯。 您可以按 ESC 一次取消儲存格編輯,然後按 ESC 兩次取消資料列中的所有編輯。 如需以程式設計方式認可和取消編輯的詳細資訊,請參閱 BeginEdit 、 CommitEdit 和 CancelEdit 方法。 如需有關編輯相關事件的詳細資訊,請參閱 BeginningEdit 、 PreparingCellForEditCellEditEnding 和 RowEditEnding 。
CanUserAddRows設定 和 CanUserDeleteRows 屬性,以指定使用者是否可以新增或刪除資料列。 使用者可以按下 DELETE 鍵來刪除選取的資料列。
CanUserAddRows如果 屬性設定 true
為 ,則會將新的專案資料列新增為 中的 DataGrid 最後一個資料列。 您可以藉由處理 InitializingNewItem 事件來設定新專案的預設值。
注意
是否允許編輯動作受到各種其他因素的影響,包括 IsReadOnly 的 和 IsEnabled 狀態 DataGrid ,以及基礎資料收集是否允許動作。
驗證
DataGrid可讓您在儲存格和資料列層級執行驗證。 使用資料格層級驗證,您可以在使用者更新值時驗證系結資料物件的個別屬性。 透過資料列層級驗證,您可以在使用者認可變更至資料列時驗證整個資料物件。 您可以藉由設定 RowValidationErrorTemplate 屬性來提供資料列層級驗證錯誤的自訂視覺回饋,也可以使用預設的錯誤指標。 若要建立自訂驗證規則,請建立衍生自 類別的 ValidationRule 類別,並實作 Validate 方法。 將自訂驗證規則新增至 RowValidationRules 集合。
自訂 DataGrid 控制項
控制項 DataGrid 支援常見的表格格式設定選項,例如替代資料列背景,以及顯示或隱藏標頭、格線和捲軸的能力。 此外,控制項提供數個樣式和範本屬性,可讓您用來完全變更控制項的外觀及其資料列、資料行、標頭和儲存格。
若要自訂 DataGrid 行為,您可以處理選取範圍變更、儲存格編輯和資料行重新排序的事件。 DataGrid也會公開數個您可以處理以自訂資料列的資料列回收事件。
若要將相同的屬性設定套用至多個 DataGrid 控制項,請使用 Style 屬性。 您可以修改預設值 ControlTemplate ,讓控制項具有唯一的外觀。 如需建立 ControlTemplate 的詳細資訊,請參閱 建立 ControlTemplate 自訂現有控制項的外觀。 若要查看 的特定 DataGrid 元件和狀態,請參閱 DataGrid 樣式和範本。
此控制項的相依性屬性可能是由控制項的預設樣式所設定。 如果屬性是以預設樣式設定,當控制項出現在應用程式中時,屬性可能會從其預設值變更。 預設樣式取決於應用程式執行時所使用的桌面主題。
注意
如果該屬性同時顯示於控制項的預設範本,並使用 TemplateBinding 來設定,則設定視覺效果屬性僅具效果作用。 您可以在通過建立 ControlTemplate 自訂現有控制項的外觀文章的變更控制項的視覺效果結構一節中找到視覺效果屬性清單。
一般工作
下表提供通常與 DataGrid 相關聯之工作的相關資訊。
建構函式
DataGrid() |
初始化 DataGrid 類別的新執行個體。 |
欄位
屬性
ActualHeight |
取得呈現此項目的高度。 (繼承來源 FrameworkElement) |
ActualWidth |
取得呈現此項目的寬度。 (繼承來源 FrameworkElement) |
AllowDrop |
取得或設定此元素是否可以當做拖放操作目標的值。 這是相依性屬性。 (繼承來源 UIElement) |
AlternatingRowBackground |
取得或設定用於交替列的背景筆刷。 |
AlternationCount |
取得或設定 ItemsControl 中的交替項目容器數,它可讓交替容器具有獨特的外觀。 (繼承來源 ItemsControl) |
AreAnyTouchesCaptured |
取得值,這個值表示是否至少有一個觸控擷取至這個項目。 (繼承來源 UIElement) |
AreAnyTouchesCapturedWithin |
取得值,這個值表示是否至少有一個觸控擷取至這個項目或其視覺化樹狀結構中的任何子項目。 (繼承來源 UIElement) |
AreAnyTouchesDirectlyOver |
取得值,這個值表示是否至少有一個觸控在這個項目上按下。 (繼承來源 UIElement) |
AreAnyTouchesOver |
取得值,這個值表示是否至少有一個觸控在這個項目或其視覺化樹狀結構中的任何子項目上按下。 (繼承來源 UIElement) |
AreRowDetailsFrozen |
取得或設定值,以指示列詳細資料能否水平捲動。 |
AutoGenerateColumns |
取得或設定值,這個值表示是否會自動建立資料行。 |
Background |
取得或設定描述控制項背景的筆刷。 (繼承來源 Control) |
BindingGroup |
取得或設定用於項目的 BindingGroup。 (繼承來源 FrameworkElement) |
BitmapEffect |
已淘汰.
已淘汰.
取得或設定直接套用至此元素呈現內容的點陣圖效果。 這是相依性屬性。 (繼承來源 UIElement) |
BitmapEffectInput |
已淘汰.
已淘汰.
取得或設定直接套用至此元素呈現內容的點陣圖效果輸入來源。 這是相依性屬性。 (繼承來源 UIElement) |
BorderBrush |
取得或設定描述控制項框線背景的筆刷。 (繼承來源 Control) |
BorderThickness |
取得或設定控制項的框線粗細。 (繼承來源 Control) |
CacheMode |
取得或設定 UIElement 的快取表示。 (繼承來源 UIElement) |
CanSelectMultipleItems |
取得或設定值,這個值代表是否可以一次選取 MultiSelector 中的多個項目。 (繼承來源 MultiSelector) |
CanUserAddRows |
取得或設定值,表示使用者是否可以將新資料列加入至 DataGrid。 |
CanUserDeleteRows |
取得或設定值,這個值表示使用者是否可以從 DataGrid 中刪除資料列。 |
CanUserReorderColumns |
取得或定值,該值指出使用者是否可藉由以滑鼠拖曳欄標題來變更欄顯示順序。 |
CanUserResizeColumns |
取得或設定值,表示使用者是否可以使用滑鼠來調整資料行寬度。 |
CanUserResizeRows |
取得或設定值,以指示使用者能否使用滑鼠調整列的高度。 |
CanUserSortColumns |
取得或設定值,該值指出使用者是否可藉由按一下欄標題來排序欄。 |
CellsPanelHorizontalOffset |
取得 DataGridCellsPanel 的水平位移。 |
CellStyle |
取得或設定套用至 DataGrid 中所有儲存格的樣式。 |
Clip |
取得或設定用來定義項目內容外框的幾何。 這是相依性屬性。 (繼承來源 UIElement) |
ClipboardCopyMode |
取得或設定值,這個值表示如何將內容複製至剪貼簿。 |
ClipToBounds |
取得或設定是否裁剪此元素 (或來自此元素的子元素) 的內容,以符合容器元素大小的值。 這是相依性屬性。 (繼承來源 UIElement) |
ColumnHeaderHeight |
取得或設定欄標題列的高度。 |
ColumnHeaderStyle |
取得或設定套用至 DataGrid 中所有資料行標題的樣式。 |
Columns |
取得集合,這個集合包含 DataGrid 中的所有資料行。 |
ColumnWidth |
取得或設定 DataGrid 中資料行和標題的標準寬度和調整大小模式。 |
CommandBindings |
取得與這個項目關聯的 CommandBinding 物件集合。 CommandBinding 會啟用此項目的命令處理,並宣告命令、其事件及此項目所附加之處理常式之間的連結。 (繼承來源 UIElement) |
ContextMenu |
取得或設定每當透過使用者介面要求操作功能表時,應該顯示的快顯功能表元素, (UI) 此元素內。 (繼承來源 FrameworkElement) |
CurrentCell |
取得或設定擁有焦點的儲存格。 |
CurrentColumn |
取得或設定包含目前儲存格的資料行。 |
CurrentItem |
取得繫結至資料列 (內含目前儲存格) 的資料項目。 |
Cursor |
取得或設定滑鼠指標在此元素上方時所顯示的游標。 (繼承來源 FrameworkElement) |
DataContext |
取得或設定項目在參與資料繫結時的資料內容。 (繼承來源 FrameworkElement) |
DefaultStyleKey |
取得或設定可在使用或定義佈景主題樣式時,用來參考這個控制項之樣式的索引鍵。 (繼承來源 FrameworkElement) |
DeleteCommand |
表示命令,這個命令表示要刪除目前的資料列。 |
DependencyObjectType |
DependencyObjectType取得包裝這個實例之 CLR 型別的 。 (繼承來源 DependencyObject) |
DesiredSize |
取得這個項目在版面配置處理序的測量傳遞期間所計算的大小。 (繼承來源 UIElement) |
Dispatcher |
取得與這個 Dispatcher 關聯的 DispatcherObject。 (繼承來源 DispatcherObject) |
DisplayMemberPath |
取得或設定來源物件上值的路徑,以當作此物件的視覺表示。 (繼承來源 ItemsControl) |
DragIndicatorStyle |
取得或設定樣式,當呈現在拖曳資料行標題時所顯示的拖曳指示器時會使用此樣式。 |
DropLocationIndicatorStyle |
取得或設定樣式,拖曳資料行標題時會套用這個樣式以表示置放位置。 |
Effect |
取得或設定要套用至 UIElement 的點陣圖效果。 這是相依性屬性。 (繼承來源 UIElement) |
EnableColumnVirtualization |
取得或設定值,這個值表示是否啟用資料行虛擬化。 |
EnableRowVirtualization |
取得或設定值,這個值表示是否啟用資料列虛擬化。 |
FlowDirection |
取得或設定文字和其他使用者介面的方向, (UI) 元素在控制其配置的任何父元素內流動。 (繼承來源 FrameworkElement) |
Focusable |
取得或設定元素是否能夠接收焦點的值。 這是相依性屬性。 (繼承來源 UIElement) |
FocusBorderBrushKey |
取得索引鍵,這個索引鍵參考擁有焦點之儲存格的預設框線筆刷。 |
FocusVisualStyle |
取得或設定屬性,這個屬性可自訂外觀、效果或其他樣式特性,以在這個項目捕捉到鍵盤焦點時套用至項目。 (繼承來源 FrameworkElement) |
FontFamily |
取得或設定控制項的字型系列。 (繼承來源 Control) |
FontSize |
取得或設定字型大小。 (繼承來源 Control) |
FontStretch |
取得或設定螢幕上字型緊縮或加寬的程度。 (繼承來源 Control) |
FontStyle |
取得或設定字型樣式。 (繼承來源 Control) |
FontWeight |
取得或設定指定字型的粗細。 (繼承來源 Control) |
ForceCursor |
取得或設定值,這個值表示這 FrameworkElement 是否應該強制使用者介面 (UI) 轉譯資料指標,如 屬性所 Cursor 宣告。 (繼承來源 FrameworkElement) |
Foreground |
取得或設定描述前景色彩的筆刷。 (繼承來源 Control) |
FrozenColumnCount |
取得或設定非捲動欄的數目。 |
GridLinesVisibility |
取得或設定值,這個值指出要顯示哪些格線。 |
GroupStyle |
取得 GroupStyle 物件的集合,定義每個群組層級的外觀。 (繼承來源 ItemsControl) |
GroupStyleSelector |
取得或設定方法,讓您可針對 GroupStyle 提供自訂選取邏輯,以套用至集合中的每個群組。 (繼承來源 ItemsControl) |
HandlesScrolling |
取得值,這個值表示 DataGrid 是否支援自訂鍵盤捲動。 |
HasAnimatedProperties |
取得值,這個值表示此項目是否有任何動畫屬性。 (繼承來源 UIElement) |
HasEffectiveKeyboardFocus |
取得值,指出 UIElement 是否具有焦點。 (繼承來源 UIElement) |
HasItems |
取得表示 ItemsControl 是否包含項目的值。 (繼承來源 ItemsControl) |
HeadersVisibility |
取得或設定值,這個值指定資料列和資料行標題的可視性。 |
HeadersVisibilityConverter |
取得轉換器,這個轉換器會將 DataGridHeadersVisibility 轉換為 Visibility。 |
Height |
取得或設定項目的建議高度。 (繼承來源 FrameworkElement) |
HorizontalAlignment |
取得或設定套用至此元素在父項元素 (例如面板或項目控制項) 中組成時的水平對齊特性。 (繼承來源 FrameworkElement) |
HorizontalContentAlignment |
取得或設定控制項內容的水平對齊。 (繼承來源 Control) |
HorizontalGridLinesBrush |
取得或設定用來繪製水平格線的筆刷。 |
HorizontalScrollBarVisibility |
取得或設定值,此值表示如何在 DataGrid 中顯示水平捲軸。 |
InheritanceBehavior |
取得或設定屬性值繼承的範圍限制、資源索引鍵查閱,以及 RelativeSource FindAncestor 查閱。 (繼承來源 FrameworkElement) |
InputBindings |
取得與此元素關聯的輸入繫結集合。 (繼承來源 UIElement) |
InputScope |
取得或設定此 FrameworkElement 使用的輸入內容。 (繼承來源 FrameworkElement) |
IsArrangeValid |
取得值,這個值表示在此項目之配置中子項目的計算大小和位置是有效的。 (繼承來源 UIElement) |
IsEnabled |
取得或設定值,指出是否在使用者介面中啟用這個專案, (UI) 。 這是相依性屬性。 (繼承來源 UIElement) |
IsEnabledCore |
取得值,這個值會成為衍生類別中 IsEnabled 的傳回值。 (繼承來源 UIElement) |
IsFocused |
取得值,決定這個項目是否具有邏輯焦點。 這是相依性屬性。 (繼承來源 UIElement) |
IsGrouping |
取得指出控制項是否使用群組的值。 (繼承來源 ItemsControl) |
IsHitTestVisible |
取得或設定宣告此元素是否可以從其呈現內容的某些部分傳回,作為點擊測試結果的值。 這是相依性屬性。 (繼承來源 UIElement) |
IsInitialized |
取得值,這個值表示這個元素是否已初始化,不論是在 XAML 處理器處理期間,還是明確呼叫其 EndInit() 方法。 (繼承來源 FrameworkElement) |
IsInputMethodEnabled |
取得值,指出是否啟用輸入法編輯器 (輸入法) 等輸入法系統來處理此專案的輸入。 (繼承來源 UIElement) |
IsKeyboardFocused |
取得值,指出這個項目是否具有鍵盤焦點。 這是相依性屬性。 (繼承來源 UIElement) |
IsKeyboardFocusWithin |
取得值,表示鍵盤焦點是否在項目或其視覺化樹狀結構子項目內的任何位置。 這是相依性屬性。 (繼承來源 UIElement) |
IsLoaded |
取得值,這個值表示此項目是否已載入以供展示。 (繼承來源 FrameworkElement) |
IsManipulationEnabled |
取得或設定值,這個值表示是否在此 UIElement 上啟用操作事件。 (繼承來源 UIElement) |
IsMeasureValid |
取得值,這個值表示配置測量所傳回的目前大小是否有效。 (繼承來源 UIElement) |
IsMouseCaptured |
取得值,指出是否將滑鼠擷取至這個項目。 這是相依性屬性。 (繼承來源 UIElement) |
IsMouseCaptureWithin |
取得值,這個值決定滑鼠擷取是由這個項目持有,還是由其視覺化樹狀中的子項目持有。 這是相依性屬性。 (繼承來源 UIElement) |
IsMouseDirectlyOver |
取得值,指出滑鼠指標位置是否與點擊測試結果對應,該結果會將複合項目納入考量。 這是相依性屬性。 (繼承來源 UIElement) |
IsMouseOver |
取得值,指出滑鼠指標是否在這個項目上方 (包括視覺化樹狀中的子項目)。 這是相依性屬性。 (繼承來源 UIElement) |
IsReadOnly |
取得或設定值,此值表示使用者是否可以編輯 DataGrid 中的值。 |
IsSealed |
取得值,這個值表示此執行個體目前是否已密封 (唯讀)。 (繼承來源 DependencyObject) |
IsStylusCaptured |
取得值,指出這個項目是否擷取手寫筆。 這是相依性屬性。 (繼承來源 UIElement) |
IsStylusCaptureWithin |
取得值,這個值決定手寫筆擷取是由這個項目持有,還是由項目範圍及其視覺化樹狀結構中的項目持有。 這是相依性屬性。 (繼承來源 UIElement) |
IsStylusDirectlyOver |
取得值,指出手寫筆位置是否與點擊測試結果相對應,該結果會將複合項目納入考量。 這是相依性屬性。 (繼承來源 UIElement) |
IsStylusOver |
取得值,指出手寫筆游標是否位在這個項目上方 (包括視覺子項目)。 這是相依性屬性。 (繼承來源 UIElement) |
IsSynchronizedWithCurrentItem |
取得或設定值,這個值表示 Selector 是否應維持 SelectedItem 與 Items 屬性中的目前項目同步。 (繼承來源 Selector) |
IsTabStop |
取得或設定值,這個值表示控制項是否包含於索引標籤巡覽。 (繼承來源 Control) |
IsTextSearchCaseSensitive |
取得或設定值,其表示在搜尋項目時,大小寫是否也是條件之一。 (繼承來源 ItemsControl) |
IsTextSearchEnabled |
取得或設定值,表示 TextSearch 是否已在 ItemsControl 執行個體上啟用。 (繼承來源 ItemsControl) |
IsUpdatingSelectedItems |
取得值,這個值指出 MultiSelector 是否正在對 SelectedItems 集合執行大量更新。 (繼承來源 MultiSelector) |
IsVisible |
取得值,指出這個元素是否顯示在使用者介面 (UI) 中。 這是相依性屬性。 (繼承來源 UIElement) |
ItemBindingGroup |
取得或設定複製到 ItemsControl 中每個項目的 BindingGroup。 (繼承來源 ItemsControl) |
ItemContainerGenerator |
取得與控制項關聯的 ItemContainerGenerator。 (繼承來源 ItemsControl) |
ItemContainerStyle |
取得或設定 Style,它會套用到為每個項目所產生的容器項目。 (繼承來源 ItemsControl) |
ItemContainerStyleSelector |
取得或設定可以套用至每個產生之容器項目的樣式的自訂樣式選取邏輯。 (繼承來源 ItemsControl) |
Items |
取得用來產生 ItemsControl 之內容的集合。 (繼承來源 ItemsControl) |
ItemsPanel |
取得或設定樣板,這個樣板會定義控制項目配置的面板。 (繼承來源 ItemsControl) |
ItemsSource |
取得或設定用來產生 ItemsControl 之內容的集合。 (繼承來源 ItemsControl) |
ItemStringFormat |
取得或設定複合字串,這個字串會指定如何格式化 ItemsControl 中要以字串形式顯示的項目。 (繼承來源 ItemsControl) |
ItemTemplate |
取得或設定用來顯示每個項目的 DataTemplate。 (繼承來源 ItemsControl) |
ItemTemplateSelector |
取得或設定選擇用來顯示每個項目範本的自訂邏輯。 (繼承來源 ItemsControl) |
Language |
取得或設定套用至項目的當地語系化/全球化語言資訊。 (繼承來源 FrameworkElement) |
LayoutTransform |
取得或設定在配置執行時應該套用至這個專案的圖形轉換。 (繼承來源 FrameworkElement) |
LogicalChildren |
取得 ItemsControl 物件的邏輯子物件列舉程式。 (繼承來源 ItemsControl) |
Margin |
取得或設定項目的外邊界。 (繼承來源 FrameworkElement) |
MaxColumnWidth |
取得或設定 DataGrid 中資料行和標題的最大寬度條件約束。 |
MaxHeight |
取得或設定元素的最大高度限制。 (繼承來源 FrameworkElement) |
MaxWidth |
取得或設定元素的最大寬度限制。 (繼承來源 FrameworkElement) |
MinColumnWidth |
取得或設定 DataGrid 中資料行和標題的最小寬度條件約束。 |
MinHeight |
取得或設定元素的最小高度限制。 (繼承來源 FrameworkElement) |
MinRowHeight |
取得或設定 DataGrid 中資料列和標題的最小高度條件約束。 |
MinWidth |
取得或設定元素的最小寬度限制。 (繼承來源 FrameworkElement) |
Name |
取得或設定項目的識別名稱。 名稱會提供參考,讓事件處理常式程式碼等程式碼後置可以在 XAML 處理器處理期間建構標記專案之後參考它。 (繼承來源 FrameworkElement) |
NewItemMargin |
取得或設定新項目資料列的邊界。 |
NonFrozenColumnsViewportHorizontalOffset |
取得檢視埠中可捲動資料行的水平位移。 |
Opacity |
取得或設定在使用者介面 (UI) 轉譯時套用至整個 UIElement 的不透明度因數。 這是相依性屬性。 (繼承來源 UIElement) |
OpacityMask |
取得或設定套用至任何 Alpha 色板遮罩 (用來遮住此項目的呈現內容) 時實作 Brush 的不透明度遮罩。 這是相依性屬性。 (繼承來源 UIElement) |
OverridesDefaultStyle |
取得或設定此元素的樣式屬性是否來自佈景主題樣式的值。 (繼承來源 FrameworkElement) |
Padding |
取得或設定控制項內部的邊框間距。 (繼承來源 Control) |
Parent |
取得這個專案的邏輯父元素。 (繼承來源 FrameworkElement) |
PersistId |
已淘汰.
取得值,這個值可唯一識別此項目。 (繼承來源 UIElement) |
RenderSize |
取得 (或設定) 這個項目的最終呈現大小。 (繼承來源 UIElement) |
RenderTransform |
取得或設定影響這個項目呈現位置的轉換資訊。 這是相依性屬性。 (繼承來源 UIElement) |
RenderTransformOrigin |
取得或設定 RenderTransform (相對於項目邊界) 宣告任何可能呈現轉換的中心點。 這是相依性屬性。 (繼承來源 UIElement) |
Resources |
取得或設定在本機定義的資源字典。 (繼承來源 FrameworkElement) |
RowBackground |
取得或設定列背景的預設筆刷。 |
RowDetailsScrollingConverter |
取得轉換器,這個轉換器會將布林值轉換為 SelectiveScrollingOrientation。 |
RowDetailsTemplate |
取得或設定用來顯示列詳細資料的範本。 |
RowDetailsTemplateSelector |
取得或設定用於列詳細資料的範本選擇器。 |
RowDetailsVisibilityMode |
取得或設定用來指示何時顯示資料列詳細資料區段的值。 |
RowHeaderActualWidth |
取得資料列標題資料行的呈現寬度。 |
RowHeaderStyle |
取得或設定套用到所有列標題的樣式。 |
RowHeaderTemplate |
取得或設定列標題的範本。 |
RowHeaderTemplateSelector |
取得或設定列標題的範本選擇器。 |
RowHeaderWidth |
取得或設定列標題欄的寬度。 |
RowHeight |
取得或設定所有資料列的建議高度。 |
RowStyle |
取得或設定套用到所有列的樣式。 |
RowStyleSelector |
取得或設定列的樣式選擇器。 |
RowValidationErrorTemplate |
取得或設定用來以視覺效果指示列驗證錯誤的範本。 |
RowValidationRules |
取得規則,以用來驗證每一列的資料。 |
SelectAllCommand |
表示命令,這個命令表示要選取 DataGrid 中的所有儲存格。 |
SelectedCells |
取得目前選取之儲存格的清單。 |
SelectedIndex |
取得或設定目前選取範圍中第一個項目的索引,若選取範圍是空的,則傳回 -1。 (繼承來源 Selector) |
SelectedItem |
取得或設定目前選取範圍中的第一個項目,如果選取範圍是空的,則傳回 null。 (繼承來源 Selector) |
SelectedItems |
取得在 MultiSelector 中的已選取項目。 (繼承來源 MultiSelector) |
SelectedValue |
取得或設定藉由使用 SelectedItem 而獲得的 SelectedValuePath 值。 (繼承來源 Selector) |
SelectedValuePath |
取得或設定路徑,這個路徑會用來從 SelectedValue 取得 SelectedItem。 (繼承來源 Selector) |
SelectionMode |
取得或設定值,此職表示如何在 DataGrid 中選取列和資料格。 |
SelectionUnit |
取得或設定值,此值表示是否可在 DataGrid 中選取列和 (或) 資料格。 |
SnapsToDevicePixels |
取得或設定值,該值判斷這個項目的呈現在呈現期間是否該使用裝置特定像素的設定。 這是相依性屬性。 (繼承來源 UIElement) |
Style |
取得或設定這個項目呈現時要使用的樣式。 (繼承來源 FrameworkElement) |
StylusPlugIns |
取得與這個項目關聯的所有手寫筆外掛程式 (自訂) 物件集合。 (繼承來源 UIElement) |
TabIndex |
取得或設定值,此值會決定當使用者使用 TAB 鍵巡覽控制項時,項目接收焦點的順序。 (繼承來源 Control) |
Tag |
取得或設定可以用來儲存關於此元素自訂資訊的任意物件值。 (繼承來源 FrameworkElement) |
Template |
取得或設定控制項範本。 (繼承來源 Control) |
TemplatedParent |
取得這個項目的範本父代參考。 若此項目不是透過範本建立,則這個屬性不相關。 (繼承來源 FrameworkElement) |
ToolTip |
取得或設定使用者介面中顯示此元素的工具提示物件, (UI) 。 (繼承來源 FrameworkElement) |
TouchesCaptured |
取得已擷取至這個項目的所有觸控裝置。 (繼承來源 UIElement) |
TouchesCapturedWithin |
取得已擷取至這個項目或其視覺化樹狀結構中之任何子項目的所有觸控裝置。 (繼承來源 UIElement) |
TouchesDirectlyOver |
取得在這個項目上停留的所有觸控裝置。 (繼承來源 UIElement) |
TouchesOver |
取得在這個項目或其視覺化樹狀結構中之任何子項目上停留的所有觸控裝置。 (繼承來源 UIElement) |
Triggers |
取得直接在這個項目或子項目中建立的觸發程序集合。 (繼承來源 FrameworkElement) |
Uid |
取得或設定這個項目的唯一識別項 (適用於當地語系化)。 這是相依性屬性。 (繼承來源 UIElement) |
UseLayoutRounding |
取得或設定值,指出配置進位是否應該在配置期間套用到這個項目的大小和位置。 (繼承來源 FrameworkElement) |
VerticalAlignment |
取得或設定套用至此項目在父項目 (例如面板或項目控制項) 中組成時的垂直對齊特性。 (繼承來源 FrameworkElement) |
VerticalContentAlignment |
取得或設定控制項內容的垂直對齊。 (繼承來源 Control) |
VerticalGridLinesBrush |
取得或設定用來繪製垂直格線的筆刷。 |
VerticalScrollBarVisibility |
取得或設定值,此值表示如何在 DataGrid 中顯示垂直捲軸。 |
Visibility |
取得或設定使用者介面 (UI) 這個專案的可見度。 這是相依性屬性。 (繼承來源 UIElement) |
VisualBitmapEffect |
已淘汰.
已淘汰.
取得或設定 BitmapEffect 的 Visual 值。 (繼承來源 Visual) |
VisualBitmapEffectInput |
已淘汰.
已淘汰.
取得或設定 BitmapEffectInput 的 Visual 值。 (繼承來源 Visual) |
VisualBitmapScalingMode |
取得或設定 BitmapScalingMode 的 Visual。 (繼承來源 Visual) |
VisualCacheMode |
取得或設定 Visual 的快取表示。 (繼承來源 Visual) |
VisualChildrenCount |
取得這個項目內的視覺化子項目數。 (繼承來源 FrameworkElement) |
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) |
方法
事件
AddingNewItem |
在新項目加入至 DataGrid 之前發生。 |
AutoGeneratedColumns |
發生於完成自動產生所有資料行時。 |
AutoGeneratingColumn |
發生於自動產生個別資料行時。 |
BeginningEdit |
在資料列或儲存格進入編輯模式之前發生。 |
CellEditEnding |
在認可或取消儲存格編輯之前發生。 |
ColumnDisplayIndexChanged |
發生於其中一個資料行的 DisplayIndex 屬性變更時。 |
ColumnHeaderDragCompleted |
發生於使用者使用滑鼠拖曳資料行標題之後放開時。 |
ColumnHeaderDragDelta |
發生於使用者拖曳資料行標題期間每次變更滑鼠位置時。 |
ColumnHeaderDragStarted |
發生於使用者開始使用滑鼠拖曳資料行標題時。 |
ColumnReordered |
發生於資料行移至顯示次序內的新位置時。 |
ColumnReordering |
發生於資料行移至顯示次序內的新位置之前。 |
ContextMenuClosing |
在項目上的任何內容功能表正要關閉之前發生。 (繼承來源 FrameworkElement) |
ContextMenuOpening |
當項目上的任何內容功能表開啟時發生。 (繼承來源 FrameworkElement) |
CopyingRowClipboardContent |
發生於準備好預設資料列內容之後。 |
CurrentCellChanged |
發生於 CurrentCell 屬性的值已變更時。 |
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 屬性值從 |
InitializingNewItem |
發生於建立新項目時。 |
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) |
LoadingRow |
在具現化 (Instantiated) DataGridRow 之後發生,好讓您可以在使用它之前先加以自訂。 |
LoadingRowDetails |
新資料列詳細資料範本套用至資料列時發生。 |
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) |
MouseDoubleClick |
發生於按兩下或更多下滑鼠按鈕時。 (繼承來源 Control) |
MouseDown |
指標在此元素上方且按下任何滑鼠按鈕時發生。 (繼承來源 UIElement) |
MouseEnter |
滑鼠指標進入此元素的邊界時發生。 (繼承來源 UIElement) |
MouseLeave |
滑鼠指標離開此元素的邊界時發生。 (繼承來源 UIElement) |
MouseLeftButtonDown |
滑鼠指標在此元素上方且按下滑鼠左按鈕時發生。 (繼承來源 UIElement) |
MouseLeftButtonUp |
滑鼠指標在此元素上方且放開滑鼠左按鈕時發生。 (繼承來源 UIElement) |
MouseMove |
滑鼠指標在此元素上方移動時發生。 (繼承來源 UIElement) |
MouseRightButtonDown |
滑鼠指標在此元素上方且按下滑鼠右按鈕時發生。 (繼承來源 UIElement) |
MouseRightButtonUp |
滑鼠指標在此元素上方且放開滑鼠右按鈕時發生。 (繼承來源 UIElement) |
MouseUp |
在此元素上方放開任何滑鼠按鈕時發生。 (繼承來源 UIElement) |
MouseWheel |
滑鼠指標在此元素上方且使用者滾動滑鼠滾輪時發生。 (繼承來源 UIElement) |
PreparingCellForEdit |
發生於儲存格進入編輯模式時。 |
PreviewDragEnter |
輸入系統報告其下以此項目作為拖曳目標的拖曳事件時發生。 (繼承來源 UIElement) |
PreviewDragLeave |
輸入系統報告其下以此項目作為拖曳來源的拖曳事件時發生。 (繼承來源 UIElement) |
PreviewDragOver |
在輸入系統回報以此項目作為可能置放目標的基礎拖曳事件時發生。 (繼承來源 UIElement) |
PreviewDrop |
輸入系統報告其下以這個項目作為置放目標的置放事件時發生。 (繼承來源 UIElement) |
PreviewGiveFeedback |
拖放操作開始時發生。 (繼承來源 UIElement) |
PreviewGotKeyboardFocus |
鍵盤以此元素為焦點時發生。 (繼承來源 UIElement) |
PreviewKeyDown |
焦點在這個項目上方且按下按鍵時發生。 (繼承來源 UIElement) |
PreviewKeyUp |
焦點在這個項目上方且放開按鍵時發生。 (繼承來源 UIElement) |
PreviewLostKeyboardFocus |
鍵盤不再以此元素為焦點時發生。 (繼承來源 UIElement) |
PreviewMouseDoubleClick |
使用者按滑鼠按鈕超過兩下時發生。 (繼承來源 Control) |
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) |
RowDetailsVisibilityChanged |
資料列詳細資料項目的可視性變更時發生。 |
RowEditEnding |
在認可或取消資料列編輯之前發生。 |
SelectedCellsChanged |
發生於 SelectedCells 集合變更時。 |
SelectionChanged |
發生於 Selector 的選取範圍變更時。 (繼承來源 Selector) |
SizeChanged |
當這個項目的 ActualHeight 或 ActualWidth 屬性變更值時發生。 (繼承來源 FrameworkElement) |
Sorting |
發生於正在排序資料行時。 |
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) |
UnloadingRow |
當 DataGridRow 物件可重複使用時發生。 |
UnloadingRowDetails |
當資料列詳細資料項目可重複使用時發生。 |
明確介面實作
IAddChild.AddChild(Object) |
此成員支援Windows Presentation Foundation (WPF) 基礎結構,而且不適合直接從您的程式碼使用。 (繼承來源 ItemsControl) |
IAddChild.AddText(String) |
此成員支援Windows Presentation Foundation (WPF) 基礎結構,而且不適合直接從您的程式碼使用。 (繼承來源 ItemsControl) |
IContainItemStorage.Clear() |
清除所有屬性關聯性。 (繼承來源 ItemsControl) |
IContainItemStorage.ClearItemValue(Object, DependencyProperty) |
移除指定項目和屬性之間的關聯性。 (繼承來源 ItemsControl) |
IContainItemStorage.ClearValue(DependencyProperty) |
從所有屬性清單中移除指定的屬性。 (繼承來源 ItemsControl) |
IContainItemStorage.ReadItemValue(Object, DependencyProperty) |
傳回與指定的項目相關聯的指定的屬性其值。 (繼承來源 ItemsControl) |
IContainItemStorage.StoreItemValue(Object, DependencyProperty, Object) |
儲存指定的屬性和值,並與指定的項目產生關聯。 (繼承來源 ItemsControl) |
IQueryAmbient.IsAmbientPropertyAvailable(String) |
如需這個成員的描述,請參閱 IsAmbientPropertyAvailable(String) 方法。 (繼承來源 FrameworkElement) |