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
- UIView Animation
- 데이터 바인딩
- 스택
- 백준온라인
- Cell Animation
- 그래프
- dfs
- CollectionView
- Grid
- Add TapGesture
- Custom Cell
- 코딩야학
- WPF
- 타일링
- listview
- MVVM
- XAML
- DP
- FEED
- BFS
- 백준
- 문자열
- command
- 생활코딩
- C++
- BOJ
- 객체
- Fakebook
- CustomCollectionViewCell
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |