http://www.wpf-tutorial.com/listview-control/listview-sorting/ 12345678910 Colored by Color Scriptercs123456789101112131415161718192021222324252627using System.ComponentModel; public partial class MainWindow : Window { public MainWindow() { InitializeComponent(); List items = new List(); items.Add(new User() { Name = "John Doe", Age = 42 }); items.Add(new User() { Name = "Jane Doe", Age = 39 });..
http://www.wpf-tutorial.com/listview-control/listview-grouping/ 1234567891011121314151617181920 Colored by Color Scriptercs12345678910111213141516171819202122232425262728293031public partial class MainWindow : Window { public MainWindow() { InitializeComponent(); List items = new List(); items.Add(new User() { Name = "John Doe", Age = 42, Sex = SexType.Male }); items.Add(new User() { Name = "Jan..
https://www.acmicpc.net/problem/1912 dp[i] : i 까지 연속되는 최대합 12345678910111213141516171819202122232425262728293031323334#include #include using namespace std;#define ARR_SIZE 100001int arr[ARR_SIZE];int dp[ARR_SIZE];int main(){ int N; cin >> N; for(int i=1; i> arr[i]; } for (int i = 1; i
- Total
- Today
- Yesterday
- Grid
- CustomCollectionViewCell
- BOJ
- CollectionView
- MVVM
- Custom Cell
- BFS
- FEED
- 문자열
- 그래프
- Cell Animation
- dfs
- C++
- 타일링
- WPF
- Add TapGesture
- 생활코딩
- 데이터 바인딩
- listview
- command
- 백준
- XAML
- Fakebook
- DP
- UIView Animation
- 백준온라인
- 코딩야학
- 스택
- 객체
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |