특정 이미지를 추가한 후에 빌드 작업을 리소스로 변경합니다.
소스레벨애서는 아래처럼 pack://application:,,,, 이후에 이미지 파일명을 넣으면
사용할 수 있습니다.
using System.Windows;
using System.Windows.Controls;
using System.Windows.Media;
using System.Windows.Media.Imaging;
namespace WPFTest
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
Title = "Show My Logo";
BitmapImage bitmap = new BitmapImage(new Uri(@"pack://application:,,,/kei.jpg", UriKind.Absolute));
Image img = new Image();
img.Source = bitmap;
img.Stretch = Stretch.Fill;
Content = img;
}
}
}
결과
WPF KeyGesture 사용해 키 이벤트 처리하기 (0) | 2024.07.10 |
---|---|
WPF SetBinding 을 이용해 ListBox 선택에 따른 배경색 변경하기 (0) | 2024.07.10 |
WPF 디스크 사용량 표시하기 (0) | 2024.07.10 |
WPF 프로그램 비정상 종료 막기 (0) | 2024.07.10 |
WPF Panel 내의 모든 Button 에 동일 이벤트 적용하기 (0) | 2024.07.10 |