방법: 컨트롤의 배경에 텍스트 그리기
업데이트: 2007년 11월
텍스트 문자열을 FormattedText 개체로 변환한 다음 개체를 컨트롤의 DrawingContext에 그려서 컨트롤의 배경에 직접 텍스트를 그릴 수 있습니다. 또한 Canvas 및 StackPanel처럼 Panel에서 파생된 개체의 배경에 그리기 위해 이 방법을 사용할 수 있습니다.
사용자 지정 텍스트 배경이 있는 컨트롤의 예
예제
컨트롤의 배경에 그리려면 새 DrawingBrush 개체를 만들고 변환된 텍스트를 개체의 DrawingContext에 그리십시오. 그런 다음 새 DrawingBrush를 컨트롤의 배경 속성에 할당합니다.
다음 코드 예제에서는 FormattedText 개체를 만들고 Label 및 Button 개체의 배경에 그리는 방법을 보여 줍니다.
// Handle the WindowLoaded event for the window.
private void WindowLoaded(object sender, EventArgs e)
{
// Update the background property of the label and button.
myLabel.Background = new DrawingBrush(DrawMyText("My Custom Label"));
myButton.Background = new DrawingBrush(DrawMyText("Display Text"));
}
// Convert the text string to a geometry and draw it to the control's DrawingContext.
private Drawing DrawMyText(string textString)
{
// Create a new DrawingGroup of the control.
DrawingGroup drawingGroup = new DrawingGroup();
// Open the DrawingGroup in order to access the DrawingContext.
using (DrawingContext drawingContext = drawingGroup.Open())
{
// Create the formatted text based on the properties set.
FormattedText formattedText = new FormattedText(
textString,
CultureInfo.GetCultureInfo("en-us"),
FlowDirection.LeftToRight,
new Typeface("Comic Sans MS Bold"),
48,
System.Windows.Media.Brushes.Black // This brush does not matter since we use the geometry of the text.
);
// Build the geometry object that represents the text.
Geometry textGeometry = formattedText.BuildGeometry(new System.Windows.Point(20, 0));
// Draw a rounded rectangle under the text that is slightly larger than the text.
drawingContext.DrawRoundedRectangle(System.Windows.Media.Brushes.PapayaWhip, null, new Rect(new System.Windows.Size(formattedText.Width + 50, formattedText.Height + 5)), 5.0, 5.0);
// Draw the outline based on the properties that are set.
drawingContext.DrawGeometry(System.Windows.Media.Brushes.Gold, new System.Windows.Media.Pen(System.Windows.Media.Brushes.Maroon, 1.5), textGeometry);
// Return the updated DrawingGroup content to be used by the control.
return drawingGroup;
}
}
참고
다음 코드 예제를 추출한 전체 코드 샘플을 보려면 컨트롤 배경에 텍스트 그리기 샘플을 참조하십시오.