Files
ZuneUIXTools/test/2.1/PLAYLISTLAND.UIX

32 lines
977 B
Plaintext

<!-- Copyright (C) Microsoft Corporation. All rights reserved. -->
<UIX xmlns="http://schemas.microsoft.com/2007/uix"
xmlns:zune="assembly://ZuneShell/ZuneUI"
xmlns:lib="res://ZuneShellResources!Library.uix"
xmlns:iris="assembly://UIX/Microsoft.Iris"
>
<UI Name="PlaylistLand" Base="lib:Library">
<Properties>
<zune:PlaylistLand Name="Page" PlaylistLand="$Required"/>
</Properties>
</UI>
<UI Name="EmptyPage" Base="lib:EmptyPage">
<Properties>
<zune:PlaylistLand Name="Page" PlaylistLand="$Required"/>
<String Name="Title" String="{zune:Shell.LoadString(zune:StringId.IDS_PLAYLIST_EMPTY_TITLE)}"/>
<iris:Command Name="Link1Command" Description="{zune:Shell.LoadString(zune:StringId.IDS_PLAYLIST_CREATE)}"/>
</Properties>
<Scripts>
<Script>
[DeclareTrigger(Link1Command.Invoked)]
Page.CreatePlaylistCommand.Invoke();
</Script>
</Scripts>
</UI>
</UIX>