listview
1 2 3 4 5 6 7 8 9 10 11 12 | <ListView.ItemContainerStyle> <Style TargetType="{x:Type ListViewItem}"> <Setter Property="Background" Value="Transparent" /> <Setter Property="Template"> <Setter.Value> <ControlTemplate TargetType="{x:Type ListViewItem}"> <ContentPresenter /> </ControlTemplate> </Setter.Value> </Setter> </Style> </ListView.ItemContainerStyle> |
button
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | <Button.Style> <Style TargetType="{x:Type Button}"> <Setter Property="Background" Value="Transparent"/> <Setter Property="Template"> <Setter.Value> <ControlTemplate TargetType="{x:Type Button}"> <Border Background="{TemplateBinding Background}"> <ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center"/> </Border> </ControlTemplate> </Setter.Value> </Setter> </Style> </Button.Style> |
'wpf' 카테고리의 다른 글
Face API를 이용하여 얼굴 검색 및 비교해서 동일인 찾기 (0) | 2019.02.25 |
---|---|
wpf FlipView (0) | 2017.10.19 |
Converter를 쓰지 않고 바인딩된 TextBlock에 글자를 추가하고 싶을때 (0) | 2017.09.06 |
LIST의 UI에 즉각적으로 바인딩 업데이트를 하고 싶을때.. (0) | 2017.08.22 |
MVVM 하위 컨트롤 바인딩 (0) | 2017.08.08 |