http://www.wpf-tutorial.com/list-controls/itemscontrol/ 12345678 ItmesControl Item 1 ItmesControl Item 2 ItmesControl Item 3 ItmesControl Item 4 Colored by Color ScriptercsItem들을 클릭하여도 아무런 일이 일어나지 않습니다. ItemsControl with data binding 12345678910111213141516 Colored by Color Scriptercs12345678910111213141516171819202122public partial class MainWindow : Window { public MainWindow() { InitializeCom..
http://www.wpf-tutorial.com/tabcontrol/using-the-tabcontrol/ WPF TabControl은 인터페이스를다른 영역으로 쪼갤 수 있습니다.Tab Header를 통하여 구분하며, Tab Header에는 Image나 TextBlock 등으로 꾸밀 수 있습니다.123456789101112131415 Content Colored by Color Scriptercs Controlling the TabControl 123456789101112131415 Prev. Next Selected Colored by Color Scriptercs 1234567891011121314151617181920212223242526 private void BtnPreviousTab_Clic..
1234 Title="MainWindow" Height="100" Width="300" ContentRendered="Window_ContentRendered"> Colored by Color Scriptercshttp://www.wpf-tutorial.com/misc-controls/the-progressbar-control/ ProgressBar는 현재 진행 중인 프로세스의 진행에 대한 내용을 시각적으로 보여줍니다. 123 Colored by Color Scriptercs Showing progress while performing a lengthy task 쓰레드에서 많은 작업을 수행하게 되면, ProgressBar는 진행상황에 대한 업데이트를 반영하기 힘듭니다. 1234 Title="MainWin..
http://www.wpf-tutorial.com/misc-controls/the-slider-control/ Slider의 속성 중 TickPlacement(Tick 위치) TickFrequency(Tick 빈도)IsSnapToTickEnabled(Thumb를Tick에만 놓일 수 있는 지)를 이용하여 Slider를 꾸밀 수 있습니다. 12345 Colored by Color Scriptercs Slider Value Slider 컨트롤에는 Value 속성이 존재하며, Code-behid 혹은 바인딩을 할 수도 있습니다. 1234 Colored by Color Scriptercs Responding to changed values Code-behind와 연결하기 위하여 Slider에는 ValueChang..
http://www.wpf-tutorial.com/misc-controls/the-border-control/ Border 컨트롤은 다른 요소들의 주위에 테두리, 배경, 또는 심지어 둘다 그리는 decorator 컨트롤입니다. 123456789 Button 1 Button 2 Button 3 Colored by Color Scriptercs Background(배경색), BorderBrush(테두리색), BorderThickness(테두리 두께), CornerRadius(둥근 모서리) 속성을 사용하였습니다..BorderThickness="1, 2, 3, 4"와 같이 사용하여 상하좌우의 테두리 두께를 다르게 지정할 수 있습니다. 12345678910111213141516 Button 1 Button 2 B..
출처 : https://msdn.microsoft.com/ko-kr/library/ff799534(v=vs.110).aspx "리본은 응용 프로그램 기능들을 응용 프로그램 창의 맨 위에 일련의 탭으로 구성하는 명령 모음입니다. 리본 UI(사용자 인터페이스)를 사용하면 기능을 쉽게 검색할 수 있고 응용 프로그램을 빨리 익힐 수 있으며 사용자에게 응용 프로그램 환경에 대한 더 많은 제어권을 제공할 수 있습니다. 리본은 기존의 메뉴 모음 및 도구 모음을 대신합니다." 위 링크를 통하여, Ribbon 을 다운로드할 수 있습니다.
http://www.wpf-tutorial.com/common-interface-controls/statusbar-control/ StatusBar(상태표시줄)은 커서의 위치, 단어의 수, 진행 상황 등 다양한 정보를 표시하는데 사용됩니다. 12345678 Colored by Color Scriptercs123456 private void TxtEditor_SelectionChanged(object sender, RoutedEventArgs e) { int row = TxtEditor.GetLineIndexFromCharacterIndex(TxtEditor.CaretIndex); int col = TxtEditor.CaretIndex - TxtEditor.GetCharacterIndexFromLineIn..
http://www.wpf-tutorial.com/common-interface-controls/toolbar-control/ WPF ToolBar는 일반적으로 ToolBarTray 컨트롤 내에 배치됩니다.123456789101112131415161718192021 Colored by Color Scriptercs1234private void CommandBinding_CanExecute(object sender, CanExecuteRoutedEventArgs e) { e.CanExecute = true; }Colored by Color Scriptercs cut, copy, paste는 WPF가 자동으로 수행하지만, new, open, save과 같은 명령은 code-behind에서 항상 CanExec..
http://www.wpf-tutorial.com/common-interface-controls/contextmenu/ context menu는 종종 팝업 메뉴로 언급되어집니다. WPF는 ContextMenu 컨트롤을 제공하며, ContextProperty를 통하여 이루어집니다.ContextProperty 는 모든 컨트롤을 제어합니다.12345678910 Colored by Color Scriptercs ContextMenu with Commands and icons 이전의 menu와 같이 icon과 command 등을 삽입할 수 있습니다.1234567891011 Colored by Color Scriptercs Invoke ContextMenu from Code-behind 자동적인 방법으로, Cont..
https://www.acmicpc.net/problem/11054 가장 긴 증가 수열에 대하여 arr[0]~arr[i] 까지, 역순으로 arr[i]~arr[0]에 대하여 구하고, 각각의 값을dp[i].first와 dp[i].second에 저장, dp 배열 first와 second의 합의 최대값을 구합니다. 123456789101112131415161718192021222324252627282930313233343536373839#include using namespace std; int arr[1001];pair dp[1001];int main(){ int n; cin >> n; for (int i = 0; i > arr[i]; } for (int i = 0; i
- Total
- Today
- Yesterday
- 문자열
- command
- CollectionView
- Fakebook
- UIView Animation
- 그래프
- WPF
- 생활코딩
- 백준온라인
- dfs
- Grid
- 백준
- 스택
- 데이터 바인딩
- Custom Cell
- 객체
- XAML
- 코딩야학
- CustomCollectionViewCell
- Add TapGesture
- 타일링
- DP
- BFS
- MVVM
- BOJ
- Cell Animation
- C++
- listview
- FEED
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |