DashStyle 열거형
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
Pen 개체를 사용하여 그린 파선의 스타일을 지정합니다.
public enum class DashStyle
public enum DashStyle
type DashStyle =
Public Enum DashStyle
- 상속
필드
Custom | 5 | 사용자 정의 파선 스타일을 지정합니다. |
Dash | 1 | 대시로 구성된 파선을 지정합니다. |
DashDot | 3 | 대시와 점이 반복되는 선을 지정합니다. |
DashDotDot | 4 | 대시와 두 개의 점이 반복되는 선을 지정합니다. |
Dot | 2 | 점으로 구성된 선을 지정합니다. |
Solid | 0 | 실선을 지정합니다. |
예제
다음 코드 예제에서는 펜을 만들고 열거형을 사용 하 여 해당 DashStyle 속성을 설정 하는 DashStyle 방법을 보여 줍니다.
이 예제는 Windows Forms 사용하도록 설계되었습니다. 라는 Button3
형식을 포함하는 폼을 Button Create. 코드를 양식에 붙여넣고 메서드를 Button3_Click
단추의 Click 이벤트와 연결합니다.
private:
void Button3_Click( System::Object^ /*sender*/, System::EventArgs^ /*e*/ )
{
Graphics^ buttonGraphics = Button3->CreateGraphics();
Pen^ myPen = gcnew Pen( Color::ForestGreen,4.0F );
myPen->DashStyle = System::Drawing::Drawing2D::DashStyle::DashDotDot;
Rectangle theRectangle = Button3->ClientRectangle;
theRectangle.Inflate( -2, -2 );
buttonGraphics->DrawRectangle( myPen, theRectangle );
delete buttonGraphics;
delete myPen;
}
private void Button3_Click(System.Object sender, System.EventArgs e)
{
Graphics buttonGraphics = Button3.CreateGraphics();
Pen myPen = new Pen(Color.ForestGreen, 4.0F);
myPen.DashStyle = System.Drawing.Drawing2D.DashStyle.DashDotDot;
Rectangle theRectangle = Button3.ClientRectangle;
theRectangle.Inflate(-2, -2);
buttonGraphics.DrawRectangle(myPen, theRectangle);
buttonGraphics.Dispose();
myPen.Dispose();
}
Private Sub Button3_Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles Button3.Click
Dim buttonGraphics As Graphics = Button3.CreateGraphics()
Dim myPen As Pen = New Pen(Color.ForestGreen, 4.0F)
myPen.DashStyle = Drawing2D.DashStyle.DashDotDot
Dim theRectangle As Rectangle = Button3.ClientRectangle
theRectangle.Inflate(-2, -2)
buttonGraphics.DrawRectangle(myPen, theRectangle)
buttonGraphics.Dispose()
myPen.Dispose()
End Sub
설명
사용자 지정 DashStyle를 정의하려면 의 DashPatternPen속성을 설정합니다.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET