WPF

02. Image 이미지

HicKee 2023. 2. 25. 22:50
<Window x:Class="WpfAppImage.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:local="clr-namespace:WpfAppImage"
        mc:Ignorable="d"
        Title="MainWindow" Height="450" Width="800">
    <StackPanel>
        <Image Source="이미지 경로" Height="283"/>
    </StackPanel>
</Window>

 

'WPF' 카테고리의 다른 글

04. 버튼 테마  (0) 2023.03.01
03. column, row 설정  (0) 2023.02.26
01. StackPanel  (0) 2023.02.21