HOW TO:在 RichTextBox 中放置自訂內容功能表
更新:2007 年 11 月
本範例顯示如何放置 RichTextBox 的自訂內容功能表。
實作 RichTextBox 的自訂內容功能表時,您必須負責處理內容功能表的位置。根據預設,自訂內容功能表會在 RichTextBox 的中央開啟。
如需示範這個範例的運作範例,請參閱在 RichTextBox 中放置自訂內容功能表範例。
範例
若要覆寫預設的位置行為,請加入 ContextMenuOpening 事件的接聽項。下列範例顯示如何以程式設計方式進行這項作業。
richTextBox.ContextMenuOpening += new ContextMenuEventHandler(richTextBox_ContextMenuOpening);
下列範例顯示對應的 ContextMenuOpening 事件接聽項的實作。
// This method is intended to listen for the ContextMenuOpening event from a RichTextBox.
// It will position the custom context menu at the end of the current selection.
void richTextBox_ContextMenuOpening(object sender, ContextMenuEventArgs e)
{
// Sender must be RichTextBox.
RichTextBox rtb = sender as RichTextBox;
if (rtb == null) return;
ContextMenu contextMenu = rtb.ContextMenu;
contextMenu.PlacementTarget = rtb;
// This uses HorizontalOffset and VerticalOffset properties to position the menu,
// relative to the upper left corner of the parent element (RichTextBox in this case).
contextMenu.Placement = PlacementMode.RelativePoint;
// Compute horizontal and vertical offsets to place the menu relative to selection end.
TextPointer position = rtb.Selection.End;
if (position == null) return;
Rect positionRect = position.GetCharacterRect(LogicalDirection.Forward);
contextMenu.HorizontalOffset = positionRect.X;
contextMenu.VerticalOffset = positionRect.Y;
// Finally, mark the event has handled.
contextMenu.IsOpen = true;
e.Handled = true;
}