http://www.wpf-tutorial.com/panels/wrappanel/ 밑의 예제는 우측으로 버튼을 나열한 것입니다. 출력결과에서는 더이상의 공간이 없기 때문에, Test button 5와 Test button 6이 다음 줄에서 부터 시작하게 됩니다.또한, 수평 방향에서는 하위 컨트롤 중 height이 가장 높은 컨트롤을 기준으로 height이 지정됩니다.(단, 컨트롤에 직접 height을 부여하지 않을 시)이때, 창사이즈를 우측으로 늘이면 Test button 5, 6은 button 4의 오른편에 위치하게 됩니다. 12345678 Test button 1 Test button 2 Test button 3 Test button 4 Test button 5 Test button 6 Colored..
http://www.wpf-tutorial.com/panels/canvas/ 쉽게 말해 Canvas는 상대적이 아닌 절대적으로 패치되어진다고 생각하면 됩니다. 123456 Top left Top right Bottom left Bottom right Colored by Color Scriptercs Z-index Z-index를 사용하여 컨트롤의 순서를 결정할 수 있습니다.123456 Colored by Color Scriptercs 123456 Colored by Color Scriptercs (ZIndex 적용)
http://www.wpf-tutorial.com/panels/introduction-to-wpf-panels/ Panel은 다른 컨트롤들의 컨테이너로써 역할을 합니다. 그리고 창/ 페이지의 레이아웃을 제어합니다.창은 오직 하나의 자식 컨트롤만을 포함할 수 있기 때문에, 패널은 공간을 영역으로 나누는 것에 종종 사용되어집니다 . Canvas : 각각의 자식 컨트롤에 특정한 좌표를 할당합니다.WrapPanel : (수평 혹은 수직) 옆으로 공간이 없을때 까지 자식 컨트롤을 다음 줄로 바꾸어가며 위치시킬 것입니다. StackPanel : 자식들이 추가되는 대로 누적됩니다.DockPanel : DockPanel을 사용하면 하위 컨트롤을 위, 아래, 왼쪽 또는 오른쪽으로 도킹 할 수 있습니다. Grid : 여러..
http://www.wpf-tutorial.com/control-concepts/text-rendering/ WinForms는 Windows로부터의 GDI API를 이용하고, WPF는 자체 텍스트 렌터링 구현을 이용하여 애니메이션을 잘 지원합니다.Microsoft는 .NET FrameWork 4.0을 사용하여 TextOptions 클래스의 TextFormattingMode, TextRenderingMode 속성으로 텍스트 렌더링의 제어권을 주는 것을 결정했습니다. TextFormattingMode ideal인경우와, Display의 경우에 따라 약간의 차이가 나는 것을 볼 수 있습니다.대부분의 경우에 ideal인 경우가 적합하지만, 매우 작은 텍스트의 경우 Display가 적합할 수 있습니다.123456..
http://www.wpf-tutorial.com/control-concepts/tooltips/ Control ToolTips은 특정 컨트롤이나 링크에 마우스를 올려놓음으로써 추가정보를 얻을 수 있는 기능입니다. 1234567 Text: Password: Colored by Color Scriptercs WPF에서의 Tooltip 속성은 string 타입이 아닌 object 타입입니다. 이것은 우리가 원하는 모든 것을 넣을 수 있음을 의미합니다.123456789101112131415161718192021222324252627282930313233 Open file Search your computer or local network for a file and open it for editing. Pres..
http://www.wpf-tutorial.com/basic-controls/the-passwordbox-control/ 이전에 사용한 textbox만을 사용하게 되면, 암호입력 시 암호가 노출되게 됩니다.암호 노출을 방지하기 위해 PasswordBox 컨트롤이 있습니다. 123456 Text: Password: cs PasswordBox의 속성 중 MaxLength와 PasswordChar를 이용하여 표기되는 문자와 그 길이를 지정할 수 있습니다. 123456 Text: Password: 최대 길이는 6글자로, *로 나오게 해! Colored by Color Scriptercs PasswordBox와 바인딩PasswordBox에서 암호를 획득해야할 때, code-behind로부터 Password 속성을..
http://www.wpf-tutorial.com/basic-controls/the-radiobutton-control/ 라디오 버튼은 단일 선택을 지원합니다. 123456 Are you ready? Yes No Maybe Colored by Color Scriptercs 라디오 버튼 그룹 라디오 버튼에 GroupName을 부여하여 개별적으로 선택할 수 있습니다. 1234567891011 Are you ready? Yes No Maybe Male or female? Male Female Not sure Colored by Color Scriptercs Custom content라디오 버튼도 체크박스와 마찬가지로 ContentControl 클래스를 상속합니다.12345678910111213141516171..
http://www.wpf-tutorial.com/basic-controls/the-checkbox-control/ 가장 기본적인 형태의 체크박스입니다.123456 Application Options Enable feature ABC Enable feature XYZ Enable feature WWW Colored by Color Scriptercs Custom content CheckBox 컨트롤은 ContentControl 클래스를 상속합니다. 이것은 커스텀 컨텐츠를 취할 수 있음을 의미합니다. Run class 123456789101112131415161718192021 Application Options Enable feature ABC Enable feature XYZ Enable feature..
그냥 갑자기 복습 겸 만들어 보고 싶어서 만들어봤습니다.data bindiing, 네트워크 연결 등을 구글링하여 추가했습니다. 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748MainWindow.xaml You can create your account for free Colored by Color Scriptercs1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980MainWindo..
http://www.wpf-tutorial.com/basic-controls/the-textbox-control/ 단일 행 TextBox123 Colored by Color Scriptercs 다중 행 TextBox 1234 AcceptsReturn : Enter/Return 키를 이용, 다음 줄로 이동하도록 TextBox를 여러 줄로 TextWrapping : 텍스트가 끝날때 자동 줄바꿈 Colored by Color Scriptercs TextBox로 맞춤법 검사 SpellCheck class를 이용하여 자동 맞춤법 검사 기능을 제공합니다.(저는스펠링 체크가 되지 않는데 왜인지 모르겠습니다...)123 en-US 언어를 사용하여 SpellCheck를 실시해라Colored by Color Scripte..
- Total
- Today
- Yesterday
- 객체
- dfs
- Cell Animation
- MVVM
- CollectionView
- 백준
- Fakebook
- 코딩야학
- 스택
- 백준온라인
- BFS
- Custom Cell
- FEED
- 문자열
- 그래프
- Grid
- 데이터 바인딩
- WPF
- DP
- BOJ
- C++
- 생활코딩
- CustomCollectionViewCell
- XAML
- 타일링
- Add TapGesture
- UIView Animation
- listview
- command
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |