■ MediaPlayer 클래스를 사용해 컴퓨터나 네트워크에 저장되어 있는 음악 파일을 재생하거나 일시 정지하거나 중단하는 방법을 보여준다. ▶ MediaPlayer 객체 생성하기 (C#)
|
using System.Windows.Media; MediaPlayer mediaPlayer = new MediaPlayer(); mediaPlayer.Open(uri); |
더 읽기
■ 피타고라스 법칙을 사용해 두 Point 객체 사이의 거리를 계산하는 방법을 보여준다. ▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
using System; using System.Windows; #region 거리 구하기 - GetDistance(startPoint, endPoint) /// <summary> /// 거리 계산하기 /// </summary> /// <param name="startPoint">시작 위치</param> /// <param name="endPoint">종료 위치</param> /// <returns>거리</returns> public double GetDistance(Point startPoint, Point endPoint) { double deltaX = startPoint.X - endPoint.X; double deltaY = startPoint.Y - endPoint.Y; return Math.Sqrt((Math.Pow(Math.Abs(deltaX), 2) + Math.Pow(Math.Abs(deltaY), 2))); } #endregion |
■ 나선을 그리기 위한 좌표들을 계산해서 리스트로 반환하는 방법을 보여준다. ▶ 나선형(Spiral) Point 리스트 구하기 예제 (C#)
|
using System.Collections.Generic; using System.Windows; // 중심점 (300, 300), 반지름 100인 크기의 원에서 30도 간격으로 1440도를 회전하는 나선형 Point 리스트를 구한다. List<Point> spiralPointList = GetSpiralPointList(new Point(300d, 300d), 100d, 30d, 1440d); |
▶ 나선형(Spiral) Point 리스트
더 읽기
■ 원을 그리기 위한 좌표들을 계산해서 리스트로 반환하는 방법을 보여준다. ▶ 원형 Point 리스트 구하기 예제 (C#)
|
using System.Collections.Generic; using System.Windows; // 중심점 (300, 300), 반지름 100인 크기의 원에서 30도 간격의 원형 Point 리스트를 구한다. List<Point> circularPointList = GetCircularPointList(new Point(300d, 300d), 100d, 30d); |
▶ 원형 Point 리스트
더 읽기
■ TreeViewItem 클래스의 Expanded 이벤트와 TreeView 클래스의 MouseUp 이벤트를 사용해 트리뷰 노드 확장시 커서를 대기 커서로 표시하는 방법을 보여준다. ▶ 예제 코드
더 읽기