EditingCommands.MoveToDocumentStart 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
表示 MoveToDocumentStart 命令,這個命令會要求插入號移至內容的最開頭。
public:
static property System::Windows::Input::RoutedUICommand ^ MoveToDocumentStart { System::Windows::Input::RoutedUICommand ^ get(); };
public static System.Windows.Input.RoutedUICommand MoveToDocumentStart { get; }
member this.MoveToDocumentStart : System.Windows.Input.RoutedUICommand
Public Shared ReadOnly Property MoveToDocumentStart As RoutedUICommand
屬性值
所要求的命令。 此命令的預設按鍵手勢為 Ctrl
+ Home
。
範例
下列範例示範如何在支援 命令的物件上叫用編輯命令。
在此範例中,做 RichTextBox 為命令目標。 請注意,實 RichTextBox 作 IInputElement 繼承自 FrameworkElement) 的介面 (,而且它包含許多編輯命令的原生支援。
方法的第一個引數 Execute 是命令參數。 大部分編輯命令都會忽略命令參數;一般而言,此參數應該 null
用於編輯命令。
第二個引數會指定要路由傳送命令的物件。 這個物件必須實作 IInputElement 介面,而且應該包含指定命令的處理常式。 一般而言,在未處理命令的物件上叫用時,會忽略命令。
RichTextBox rTB = new RichTextBox();
EditingCommands.ToggleInsert.Execute(null, rTB);
Dim rTB As New RichTextBox()
EditingCommands.ToggleInsert.Execute(Nothing, rTB)
備註
文字容器 是構成手邊內容最終框線的專案。 TextBlock 和 FlowDocument 是文字容器的範例。 文字容器內統包含的內容稱為 檔。
沒有任何實際實作會回應任何指定物件上的此命令;在許多情況下,回應命令的實作是應用程式寫入器的責任。
、 TextBox 和 PasswordBox 原生支援 RichTextBox 此命令。
XAML Attribute Usage
<object property="MoveToDocumentStart"/>