반응형 전체 글190 [WPF] 확인 취소 가능한 MessageBox 만들기 MessageBoxResult result = MessageBox.Show("종료 하시겠습니까?", "종료", MessageBoxButton.OKCancel); if (result == MessageBoxResult.OK) { MessageBox.Show("확인버튼클릭"); } else { MessageBox.Show("취소버튼클릭"); } 2010. 7. 12. [WPF] 각종 컨트롤 글꼴 설정하기 Label label = new Label(); label.FontFamily = new FontFamily("맑은고딕"); TextBox textbox = new TextBox(); textbox.FontFamily = new FontFamily("맑은고딕"); Button button = new Button(); button.FontFamily = new FontFamily("맑은고딕"); 2010. 7. 11. Main5 2010. 7. 10. [WPF] C#코드로 버튼 생성 및 버튼 설정 ReturnButton.Width = 100;//버튼너비설정 ReturnButton.Height = 23;//버튼높이설정 ReturnButton.FontFamily = new FontFamily("맑은고딕");//버튼글씨체설정 ReturnButton.Content = "뷰어모드 전환";//버튼내용설정 Canvas.SetLeft(ReturnButton, 900 - 100);//버튼위치설정 Canvas.SetTop(ReturnButton, totalheight + 20);//버튼위치설정 MainCanvas.Children.Add(ReturnButton);//Canvas에 버튼 추가 ReturnButton.Visibility = Visibility.Hidden;//버튼 숨기기 2010. 7. 9. 이전 1 ··· 40 41 42 43 44 45 46 ··· 48 다음 반응형