본문 바로가기
반응형

전체 글190

[WPF] 코드로 Label 생성하고 설정하기 Label label = new Label(); //레이블 생성 label.Name = soso; //Name 주기 label.Content = text; //레이블 텍스트 입력하기 text는 string label.FontFamily = new FontFamily("맑은고딕"); //글씨체 바꾸기 2010. 7. 7.
[WPF] 컴퓨터에 있는 이미지 불러오기 private void GetImage() { OpenFileDialog openDialog = new OpenFileDialog(); if (openDialog.ShowDialog() == true) { if (File.Exists(openDialog.FileName)) { ChangeImage changeimageWindow = new ChangeImage(); BitmapImage bitmapImage = new BitmapImage(new Uri(openDialog.FileName, UriKind.RelativeOrAbsolute)); ImageBox.Source = bitmapImage; } } } 참고 : http://www.hoons.kr 2010. 7. 7.
[WPF] C#코드로 도형 그릴때 선색 설정하기 private void DrawBoldLine(int x1, int y1, int x2, int y2)//굵은선 그리기 { Color color= Color.FromRgb(148, 170, 59);//(r,g,b)값 SolidColorBrush brush = new SolidColorBrush(color);//브러쉬 색설정 Line line = new Line();//라인 생성 line.X1 = x1;//좌표설정 line.X2 = x2;//좌표설정 line.Y1 = y1;//좌표설정 line.Y2 = y2;//좌표설정 line.Stroke = brush;//선색 지정 line.Fill = brush;//면색 지정 line.StrokeThickness = 2;//선두께 정 MainCanvas.Childre.. 2010. 7. 7.
[WPF] 도형 좌표값 얻어오기 부모컨트롤이 Canvas 일때 얻어오기 : Canvas.GetLeft, Canvas.GetTop 설정하기 : Canvas.SetLeft, Canvas.GetTop 부모컨트롤이 Grid 일때 Margin 값으로 얻어옴. 참고 : 훈스닷넷(http://www.hoons.kr/31417/BoardTrackback.aspx) 2010. 7. 6.
반응형