*자료형 자료형 크기특징 short2byte -2^15 ~ 2^15-1unsigned short2byte 0 ~ 2^16-1int4byte -2^31 ~ 2^31-1unsigned int4byte 0 ~ 2^32 float4byte float f = 0.5f ; 와 같이 뒤에 f를 써준다. double8byte char1byte wchar_t2byte wchar_t w = L'A'; 와 같이 앞에 L을 써준다. (char) 0 = 48, (char) A = 65, (char) a = 97 * 0.00123 -> 1.23 * 10^-3 -> 1.23 | -3 과 같은 부동소수점 형태로 저장이 되며,정밀도를 잃어버릴 수 있는 단점이 있습니다. * 0이 아닌 모든 값 = true(bool)99 => true,..
https://www.acmicpc.net/problem/11053 arr[0] 부터 arr[i] 까지의 가장 긴 증가하는 부분 수열을 구하며 나아간다. (i = 0~n) 123456789101112131415161718192021222324252627282930#include #include using namespace std; int arr[1001];int dp[1001];//dp[i] : a[i]를 마지막으로 하는 가장 긴 증가하는 부분 수열의 길이int n; int main(){ cin >> n; for (int i = 0; i > arr[i]; } for (int i = 0; i
http://www.wpf-tutorial.com/data-binding/the-stringformat-property/ covnerter의 멋있는 점은 모든 데이터 타입을 완벽히 다른 데이터 타입으로 변환할 수 있는 것입니다.StringFormat 속성은 데이터 타입의 변환을 하지 않고, 표시하는 방식만을 다르게 하는 것을 지원합니다. 123456789 Title="MainWindow" Height="200" Width="350" Name="wnd"> Colored by Color Scriptercs Formatting without extra text 사용자 정의 텍스트를 포함하지 않는 형식 문자를 지정한다면, XAML에서 정의할 때 추가적인 중괄호를 추가해야합니다. 1234Title="MainWin..
http://www.wpf-tutorial.com/data-binding/value-conversion-with-ivalueconverter/ When to use a value converterValue converter (IValueConverter)는 매유 종종 데이터 바인딩에 사용되어집니다. ex) Byte를 KB, MB, GB 등으로 표한하는 경우, bool 값 대신 yes 혹은 no 로 표시 Implementing a simple value converter WPF value converter는 IValueConverter 인터페이스 혹은 IMultiValueConverter 인터페이스를 구현해야합니다.두 인터페이스는 단지 Convert()와 ConvertBack() 두 가지의 메소드를 구현하..
Grid, StackPanel, CheckBox, TextBlock, TextBox 등 컨트롤들과 패널들을 이용한 UI 제작 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 Painted Not Painted Rubber Not Rubber Colored by Color Scriptercs 123..
http://www.wpf-tutorial.com/data-binding/responding-to-changes/ Responding to data source changes 데이터 소스 변경 사항에 대하여 변경 사항을 처리해야할 수도, 하지 않을 수도 있는 두가지의 시나리오가 존재합니다. WPF는 ObservableCollection과 INotifyPropertyChanged 인터페이스가 있습니다. 12345678 Add user Change user Delete user Colored by Color Scriptercs 1234567891011121314151617181920212223242526272829303132333435363738394041424344namespace WPF_tutorial{..
http://www.wpf-tutorial.com/data-binding/using-the-datacontext/ http://www.wpf-tutorial.com/data-binding/the-update-source-trigger-property/ DataContext 속성의 디폴트는 null입니다. 그러나, DataContext는 컨트롤 계층에 의하여 상속되므로 하위 컨트롤에서 사용할 수 있습니다. 123456789101112 Colored by Color Scriptercs 12345public MainWindow() { InitializeComponent(); this.DataContext = this; }cs 창에는 창에는 컨트롤에 전달되는 DataContext가 있기 때문에, 각각의 bind..
http://www.wpf-tutorial.com/data-binding/introduction/http://www.wpf-tutorial.com/data-binding/hello-bound-world/ 데이터 바인딩은 두개의 data/정보 소스를 함께 엮고, 데이터의 동기화를 유지하는 일반적인 기술입니다. TextBox의 Text 속성과 TextBlock의 값을 바인딩하는 예제입니다.1234567 Colored by Color Scriptercs {Binding Path = NameOfProperty, ElementName = name} Path : 바인딩할 속성 (생략 가능)ElementName : 바인딩할 속성 중에서의 name
http://www.wpf-tutorial.com/panels/gridsplitter/ GridSplitter을 이용하면 row 혹은 column의 비율을 사용자가 변경할 수 있습니다. 12345678910 Left side Right side Colored by Color Scriptercs 중앙에 위치한 GridSplitter을 이용하여 좌우측의 비율을 조정할 수 있습니다. http://www.wpf-tutorial.com/panels/grid-usage-example-contact-form/ 연락처 양식 12345678910111213141516 Name: E-mail: Colored by Color Scriptercs
http://www.wpf-tutorial.com/panels/grid-rows-and-columns/블로그에 나온 내용입니다. Grid는 쉽게 말해, 자기가 원하는 대로 구역을 나누어 컨트롤을 집어넣을 수 있습니다. 12345678910111213141516171819 각 구역마다 row와 column 인덱스를 이용하여 접근할 수 있습니다. 확장된 구역을 원한다면, ColumnSpan, RowSpan을 사용하면 됩니다. Colored by Color Scriptercs
- Total
- Today
- Yesterday
- WPF
- CustomCollectionViewCell
- MVVM
- 생활코딩
- FEED
- XAML
- DP
- 백준온라인
- CollectionView
- Cell Animation
- 문자열
- Fakebook
- BOJ
- 스택
- dfs
- command
- C++
- BFS
- listview
- Grid
- 데이터 바인딩
- UIView Animation
- Add TapGesture
- 그래프
- 코딩야학
- 백준
- 객체
- Custom Cell
- 타일링
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 26 | 27 | 28 | 29 | 30 |