WPF에서 프린터 연결 및 인쇄 기능 구현
프로젝트 설정
WPF 프로젝트 생성
dotnet new wpf -n WpfPrintSolution
cd WpfPrintSolution
필요 어셈블리 참조 추가
System.Printing (프린터 관리)
PresentationFramework (UI 컨트롤)
UI 디자인 (MainWindow.xaml)
<Window x:Class="WpfPrintSolution.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x= ...
6월 11일 16:20에 게시됨