Easy!
You want to use the MediaSelectors. In your page.css (say default.css) you simply hide all the elements you don't want and display your image (converse for the other selectors like portrait, landscape etc...). You can see this in the templates
when you create an app from one of the templates (other than blank). Below is the media selector for the snapped view:
@media screen and (-ms-view-state: snapped) {
.fragment header[role=banner] {
-ms-grid-columns: auto 1fr;
margin-left: 20px;
}
.fragment header[role=banner] .win-backbutton {
margin: 0;
margin-right: 10px;
margin-top: 76px;
}
.fragment header[role=banner] .win-backbutton:disabled {
display: none;
}
.fragment header[role=banner] .titlearea {
-ms-grid-column: 2;
margin-left: 0;
margin-top: 68px;
}
}
Check these out:
http://msdn.microsoft.com/en-us/library/windows/apps/hh465371.aspx
http://msdn.microsoft.com/en-us/library/windows/apps/hh465826.aspx
-Jeff
Jeff Sanders (MSFT)