Architect's Log

I'm a Cloud Architect. I'm highly motivated to reduce toils with driving DevOps.

マークアップでjpgを表示する

アプリ実行


プロジェクト

jpgを追加する

ソースコード

App.xaml
<Application x:Class="HelloWorld.App"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             StartupUri="MainWindow.xaml">
</Application>
MainWindow.xaml
<Window x:Class="HelloWorld.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow" Height="255" Width="400">
    <Image Source="Bluehills.jpg" />
</Window>