mirror of
https://github.com/ZuneDev/ZuneUIXTools.git
synced 2026-07-27 13:11:59 -07:00
32 lines
977 B
Plaintext
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>
|