방법: 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;
}