프로그래밍

[WPF] MaterialDesign 아이콘 사용하기

Victory_HA 2024. 12. 17. 10:56

Open source Icon

  • pictogrammers 사이트에 접속합니다. (https://pictogrammers.com/libraries)
    • Open source Icon 제공
  • Icon 선택 후 `Download XAML (Canvas) for Windows` 선택하여 다운로드합니다.

  • Notepad사용하여 내용 복사합니다.
  • wpf xaml파일에서 사용합니다.
    • ViewBox를 사용하면 크기 조절이 가능합니다.

Account.xaml

    <Viewbox Width="100" Height="100">
        <Canvas xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Width="24" Height="24">
            <Path Fill="#000000" Data="M12,4A4,4 0 0,1 16,8A4,4 0 0,1 12,12A4,4 0 0,1 8,8A4,4 0 0,1 12,4M12,14C16.42,14 20,15.79 20,18V20H4V18C4,15.79 7.58,14 12,14Z" />
        </Canvas>
    </Viewbox>

Account Icon


'프로그래밍' 카테고리의 다른 글

[LLM] Ollama 모델 사용기 - 2  (0) 2025.01.09
[LLM] Ollama 모델 사용기 - 1  (0) 2025.01.09
클래스 간의 관계 (UML)  (0) 2024.12.06
[EFCore] Entity Framework Core  (1) 2024.11.29
Hypervisor (하이퍼바이저)  (1) 2024.11.28