본문 바로가기

Programing (프로그래밍)/WPF & C# (C Sharp)

WPF & C# - 배경 색상 및 이미지 변경하기 ( Background / color / bitmapimage / SolidColorBrush / BrushConverter / ColorConverter ) WPF & C# - 배경 색상 및 이미지 변경하기 ( Background / color / bitmapimage / SolidColorBrush / BrushConverter / ColorConverter ) [관련글]WPF & C# - 색상변환 / 브러쉬, 컬러 ( Brush Color / SolidColorBrush / 색상 형변환) Background 색상 변경하기 1234Color clr = Color.FromRgb(0, 255, 255);// Color clor = Colors.Red;SolidColorBrush brush = new SolidColorBrush(clr);Background = brush;cs 1Background = (SolidColorBrush)new BrushConverte.. 더보기
WPF & C# - 객체(버튼) 생성하기 ( 버튼 생성 / += / 이벤트 / 핸들러 button / EventHandler ) WPF & C# - 객체(버튼) 생성하기 ( 버튼 생성 / += / 이벤트 / 핸들러 button / EventHandler ) 객체 생성하기 - Button 12345678910111213141516171819202122232425262728293031int i;private void Button_Click(object sender, RoutedEventArgs e){ // 버튼 생성 Button btn = new Button(); // 버튼 생성 btn.Name = "btn"+ i.ToString(); // 버튼명 // 버튼 생성 - 모양및 색상 btn.Content = btn.Name; // 버튼 Content btn.Tag = i; // tag btn.Height = 40; // 세로길이 btn... 더보기
WPF & C# - 문자열 숫자형식 포맷 ( 데이타 타입 / 숫자형식 / 날짜형식 / 이스케이스 시퀀스 / 연산자 ) WPF & C# - 문자열 숫자형식 포맷 ( 데이타 타입 / 숫자형식 / 날짜형식 / 이스케이스 시퀀스 / 연산자 ) C# Data Types [표 #1] C# 데이터 형식 (C# Data Types)분 류종 류키워드/예약어특 성값 형식 Value Type구조체형 Structs숫자형 Numericsbyte부호있는 8비트 숫자 -128 ~ 127byte부호없는 8비트 숫자 0 ~ 255short부호있는 16비트 숫자 -32,768 ~ 32,767ushort부호없는 16비트 숫자 0 ~ 65,535int부호있는 32비트 숫자 -2,147,483,648 ~ 2,147,483,647uint부호없는 32비트 숫자 0 ~ 4,294,967,295long부호있는 64비트 숫자 -9,223,372,036,854,775.. 더보기
WPF & C# - 도형 드래그 이동 ( Element / Move / DragMove / Button / Marjin ) WPF & C# - 도형 드래그 이동 ( Element / Move / DragMove / Button / Marjin ) 관련글 2018/05/02 - [Programing (프로그래밍)/WPF & C# (C Sharp)] - WPF & C# - 도형 드래그 리사이즈 ( Element / 변형 / DragMove / resize / button ) 2017/10/23 - [Programing (프로그래밍)/WPF & C# (C Sharp)] - WPF & C# (C Sharp) - 마우스 드래그로 윈도우 창 이동하기 ( window / drag move 드래그 무브 ) 도형 드래그 이동 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25.. 더보기
WPF & C# - 도형 드래그 리사이즈 ( Element / 변형 / DragMove / resize / button ) WPF & C# - 도형 드래그 리사이즈 ( Element / 변형 / DragMove / resize / button ) 관련글 2017/11/21 - [Programing (프로그래밍)/VB.NET] - 【 VB.NET 】- 버튼 드래그 이동 하기 ( Dragmove ) 2017/10/23 - [Programing (프로그래밍)/WPF & C# (C Sharp)] - WPF & C# (C Sharp) - 마우스 드래그로 윈도우 창 이동하기 ( window / drag move 드래그 무브 ) 도형 드래그 이동하기 1234567891011121314151617181920212223242526272829303132333435363738394041424344double preWidth; // 도형 가로do.. 더보기
WPF & C# - Grid 열과 행으로 나누기 ( RowDefinitions / ColumnDefinitions ) WPF & C# - Grid 열과 행으로 나누기 ( RowDefinitions / ColumnDefinitions ) Grid (열,행으로 나누기) 코드로 원하는 위치에 객체 삽입하기 MainWindow.xaml.cs btn.Visibility = Visibility.Collapsed; Grid.SetRow(btn, 0); Grid.SetColumn(btn, 0); btn.Visibility = Visibility.Visible; 참고 https://insurang.tistory.com/534 WPF & C# - 열행 맞추어 Grid 생성하기 ( makeGrid / ColumnDefinitions / RowDefinitions ) WPF & C# - 열행 맞추어 Grid 생성하기 ( makeGrid / .. 더보기
WPF & C# - 네이밍 규칙 WPF & C# - 네이밍 규칙 컨트롤 ( Control ) Button btn Checkbox chk CheckBoxList cbl DataGrid dtg DataList dtl DropDownList ddl Hyperlink hlk Image img ImageButton imb Label lbl ListBox lst Panel pnl PlaceHolder phd RadioButton rdo RadioButtonList rbl Repeater rep Table tbl TextBox txt Validators va 출처 : https://blog.naver.com/krinlion 출처 : https://genycho.blog.me/220946849338 더보기
WPF & C# - OpenFileDialog (다이어로그) WPF & C# - OpenFileDialog (다이어로그) OpenFileDialog (다이어로그) 사용하기 123456OpenFileDialog dialog = new OpenFileDialog();dialog.Filter = "Image File|*.jpg;*.jpeg;*.png;*.gif;*.bmp";if (dialog.ShowDialog().GetValueOrDefault()){ this.mdaPlayer.Source = new Uri(dialog.FileName, UriKind.RelativeOrAbsolute);}Colored by Color Scriptercs 참고자료https://msdn.microsoft.com/ko-kr/library/system.windows.forms.filedia.. 더보기