개발 완벽정리
  • Home
  • 네트워크
    • 네트워크 개요
  • WPF
    • WPF 개요
    • Panel
    • Material Design
  • Tool
    • Visual Studio
Home » Archives for » 페이지 2
Author

westAhn

westAhn

  • WPF 개요

    [WPF] WPF 지원 중단되었나?

    by westAhn 2024-03-20
    by westAhn 2024-03-20

    WPF 관련하여 검색하면 “WPF 지원 중단”이라는 연관 검색어가 뜬다. WPF는 정말로 지원이 중단된 것일까? 만약 중단되었다면 WPF로 개발하는 것이 의미가 있는 것인가? 만약 중단되지 않았다면 왜 “WPF 지원 중단”이 연관 …

    2 FacebookTwitterPinterestLinkedinTumblrEmail
  • WPF 개요

    [WPF] .NET Framework vs .NET Core vs .NET비교와 차이점은?

    by westAhn 2024-03-13
    by westAhn 2024-03-13

    WPF 프로젝트를 생성할 때 .NET Framework와 .NET Core 그리고 .NET중에 하나를 선택하여 만든다. 이 세 가지는 무엇이며 어떠한 차이점이 있는지 알아보자. .NET Framework란 한국어로 해석하면 .NET 뼈대이다. 즉, Windows환경에서 프로그램을 …

    4 FacebookTwitterPinterestLinkedinTumblrEmail
  • WPFWPF 개요

    Winform vs WPF 비교하기/속도 성능의 차이점은?

    by westAhn 2024-03-11
    by westAhn 2024-03-11

    C#언어 또는 Visual Basic을 기반으로 한 HMI개발 시 Winform이나 WPF 중 하나를 선택 하여야 한다. 이 둘은 크게 보면 유사한 점이 많지만 면밀하게 보면 차이점이 존재한다. 둘은 어떠한 유사점과 차이점이 …

    3 FacebookTwitterPinterestLinkedinTumblrEmail
  • Panel

    [WPF-Panel] Canvas 사용법 및 예제

    by westAhn 2024-03-07
    by westAhn 2024-03-07

    WPF Canvas란 좌표 값을 이용하여 자식 컨트롤러를 배치하는 방법이다. 자유롭게 컨트롤러를 배치할 때 편리하다. Canvas.Top, Canvas.Left, Canvas.Right, Canvas.Bottom 속성을 사용하여 자식 컨트롤의 위치를 지정해준다. 작성된 코드 순서대로 배치되기 때문에 배치상 …

    3 FacebookTwitterPinterestLinkedinTumblrEmail
  • Panel

    [WPF-Panel] UniformGrid 사용법 및 예제

    by westAhn 2024-03-05
    by westAhn 2024-03-05

    WPF UniformGrid란 일정한 모양으로 나뉜 행과 열에 컨트롤을 배치하는 방법이다. 기능적으로는 Grid와 거의 비슷하다. Grid는 각 행과 열이 다른 크기를 가질 수 있지만, UniformGrid는 모두 동일한 크기를 가진다. Grid에서는 GridColumnDefinitions와 …

    3 FacebookTwitterPinterestLinkedinTumblrEmail
  • Panel

    [WPF-Panel] WrapPanel 사용법 및 예제

    by westAhn 2024-03-05
    by westAhn 2024-03-05

    WPF WrapPanel이란 자식 컨트롤들을 수평(Horizontal) 또는 수직(Vertical)으로 공간이 부족할 때까지 차례대로 채우는 Panel이다. WrapPanel의 Orientation 속성의 기본 값은 수평(Horizontal)이고, 이때 자식 컨트롤은 같은 높이로 차례대로 배치된다.Orientation 속성을 수직(Vertical) 값을 사용하면 …

    2 FacebookTwitterPinterestLinkedinTumblrEmail
  • Panel

    [WPF-Panel] Grid 사용법 및 예제

    by westAhn 2024-03-04
    by westAhn 2024-03-04

    WPF Grid란 행과 열의 조합으로 컨트롤을 배치하는 방법이다. 행의 너비와 열의 높이는 고정 크기를 주거나 자동 또는 백분율에 비례하여 배치할 수 있다. GridColumnDefinitions와 GridRowDefinitions로 원하는 행과 열 개수만큼 선언한다. Grid에서 …

    2 FacebookTwitterPinterestLinkedinTumblrEmail
  • Panel

    [WPF-Panel] DockPanel 사용법 및 예제

    by westAhn 2024-03-01
    by westAhn 2024-03-01

    WPF DockPanel은 자식 컨트롤러를 상단, 하단, 좌측, 우측 중 하나의 위치에 배치 하는 것이다. 위치를 지정하지 않으면 가운데 남은 공간에 배치된다. 자식 요소들의 배치되는 순서는 먼저 선언된 순서대로 나타난다. DockPanel.Dock …

    3 FacebookTwitterPinterestLinkedinTumblrEmail
  • Panel

    [WPF-Panel] StackPanel 사용법 및 예제

    by westAhn 2024-02-29
    by westAhn 2024-02-29

    WPF StackPanel은 수직 또는 수평 방향으로 정렬하는 방법이다. WrapPanel과 차이점은 WrapPanel의 자식 컨트롤은 배치되는 공간이 부족한 경우 다음 줄로 자동으로 채우지만 StackPanel은 한 방향으로만 채운다. Orientation 속성을 Vertical로 설정하면 수직으로 …

    5 FacebookTwitterPinterestLinkedinTumblrEmail
  • WPF 개요

    C# WPF란? WPF를 사용하는 이유

    by westAhn 2024-02-28
    by westAhn 2024-02-28

    C# WPF란 Windows Presentation Foundation의 약자로 한글로 해석하면 창 표현 기초라는 뜻이다. 즉, 창을 표현하는 기술이라는 것이다. 2차원 또는 3차원 그래픽, 애니메이션 효과, 웹의 특성들을 적용할 수 있어 사용자에게 아름다운 …

    4 FacebookTwitterPinterestLinkedinTumblrEmail
  • 1
  • 2
  • 3

About Me

About Me

나의 지식을 공유하고 싶어 만든 공간
C#/WPF로 다양하고 새로운 작업하는 걸 좋아하는 개발자
e-mail:westahn.deve@gmail.com