Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 백준 10817번
- 백준 4344번
- 백준 알고리즘
- 백준 2775번
- 공부
- 백준 1712번
- 백준 2869번
- 프로그래머스
- 백준 2839번
- 십진수 이진수
- 백준 세수
- 배열 소수
- 백준 2751번
- C
- programers
- 16진수
- 백준 달팽이
- 비트시프트
- 백준 1003번
- 백준 10989
- 백준 1026번
- 10진수 2진수
- 백준 손익분기점
- 백준 1978번
- 8진수
- 2751번 C
- 알고리즘
- 10989 C
- c 백준 4344번
- 백준
Archives
- Today
- Total
IT Diary
What is the template binding ? 본문
Question
<ControlTemplate TargetType="{x:Type wpftoolkit:DataGridCell}">
<Border Padding="{TemplateBinding Padding}"
BorderBrush="{TemplateBinding BorderBrush}"
BorderThickness="{TemplateBinding BorderThickness}"
Background="{TemplateBinding Background}"
SnapsToDevicePixels="True">
<ContentPresenter SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}"/>
</Border>
</ControlTemplate>
Why do template bindings?
Answer..
추가적으로
- 컴파일 타임에 평가
- 단방향 바인딩
- 원본 및 대상 속성이 모두 종속성 속성
'.NetFramework' 카테고리의 다른 글
맨날 봐야할 자료 (0) | 2020.10.21 |
---|---|
DI(Dependency Injection) (0) | 2020.10.13 |
Comments