Commit decomp samples

This commit is contained in:
Yoshi Askharoun
2025-09-21 21:25:29 -05:00
parent 92886feac7
commit 7ceeb13d06
6 changed files with 4244 additions and 50 deletions
+20 -38
View File
@@ -1,48 +1,35 @@
<?xml version="1.0" encoding="utf-16"?>
<UIX xmlns="http://schemas.microsoft.com/2007/uix" xmlns:me="Me" xmlns:dialog="res://UIXControls!Dialog.uix" xmlns:iris="assembly://UIX/Microsoft.Iris" xmlns:zuneUI="assembly://ZuneShell/ZuneUI" xmlns:label="res://UIXControls!Label.uix" xmlns:styles="res://ZuneShellResources!Styles.uix" xmlns:linkButtons="res://ZuneShellResources!LinkButtons.uix" xmlns:button="res://UIXControls!Button.uix">
<UIX xmlns="http://schemas.microsoft.com/2007/uix" xmlns:iris="assembly://UIX/Microsoft.Iris" xmlns:zuneUI="assembly://ZuneShell/ZuneUI" xmlns:styles="res://ZuneShellResources!Styles.uix" xmlns:linkButtons="res://ZuneShellResources!LinkButtons.uix" xmlns:label="res://UIXControls!Label.uix" xmlns:dialog="res://UIXControls!Dialog.uix">
<Class Name="AboutDialog" Base="dialog:Dialog">
<Properties>
<String String="res://ZuneShellResources!AboutDialog.uix#AboutDialogContentUI" Name="ContentUI" />
<iris:Command Description="{zuneUI:Shell.LoadString(zuneUI:StringId.IDS_DIALOG_OK)}" Name="Cancel" />
<zuneUI:WebHelpCommand Description="{zuneUI:Shell.LoadString(zuneUI:StringId.IDS_ABOUTDIALOG_TECHNICAL_SUPPORT_INFORMATION)}" Url="http://www.zune.net/support/" Name="TechSupportLink" />
<zuneUI:WebHelpCommand Description="{zuneUI:Shell.LoadString(zuneUI:StringId.IDS_ABOUTDIALOG_TECHNICAL_SUPPORT_INFORMATION)}" Url="{zuneUI:CultureHelper.GetHelpUrl()}" Name="TechSupportLink" />
<String String="{zuneUI:Shell.LoadString(zuneUI:StringId.IDS_ABOUTDIALOG_TITLE)}" Name="AccessibleDescription" />
</Properties>
</Class>
<UI Name="AboutDialogContentUI" Base="dialog:DialogContentUI">
<Properties>
<me:AboutDialog Name="Dialog" />
</Properties>
<Scripts>
<Script>if (!iris:Application.RenderingType == iris:RenderingType.GDI)
{
GDIModeLabel.Visible = True;
GDIModeLabel.Content = zuneUI:Shell.LoadString(zuneUI:StringId.IDS_ABOUTDIALOG_GDI_MODE_NOTICE);
}</Script>
</Scripts>
<Scripts>
<Script>if (!iris:Application.RenderingType == iris:RenderingType.GDI)
{
GDIModeLabel.Visible = True;
GDIModeLabel.Content = zuneUI:Shell.LoadString(zuneUI:StringId.IDS_ABOUTDIALOG_GDI_MODE_NOTICE);
}</Script>
<Script>DialogTitle = zuneUI:Shell.LoadString(zuneUI:StringId.IDS_ABOUTDIALOG_TITLE);
zuneUI:Shell.LoadString(zuneUI:StringId.IDS_ABOUTDIALOG_TITLE);</Script>
<Script>ButtonCommands = new List();
ButtonCommands.Add(Dialog.Cancel);
DefaultButtonModel = Dialog.Cancel;
ButtonModelToFocus = Dialog.Cancel;</Script>
<Script>/* UIB_009E */
if (iris:Application.RenderingType == iris:RenderingType.GDI)
goto UIB_00BA;
GDIModeLabel.Visible = true;
GDIModeLabel.Content = zuneUI:Shell.LoadString(zuneUI:StringId.IDS_ABOUTDIALOG_GDI_MODE_NOTICE);
zuneUI:Shell.LoadString(zuneUI:StringId.IDS_ABOUTDIALOG_GDI_MODE_NOTICE);</Script>
</Scripts>
<Content>
<Panel Navigation="ContainAll, WrapAll" MaximumSize="360, 0" Margins="10">
<Layout>
<FlowLayout Orientation="Vertical" />
</Layout>
<Panel Layout="VerticalFlow" MaximumSize="360, 0">
<Children>
<label:Label Content="{zuneUI:Shell.LoadString(zuneUI:StringId.IDS_ABOUTDIALOG_TITLE)}" Style="{styles:SharedStyles.DialogHeaderStyle}" WordWrap="true" />
<Panel Margins="10">
<Layout>
<FlowLayout Orientation="Horizontal" />
</Layout>
<Panel Layout="HorizontalFlow" Margins="10">
<Children>
<Graphic Content="res://ZuneShellResources!ZuneColorLogo.png" StretchingPolicy="Uniform" SizingPolicy="SizeToContent" />
<Panel Margins="10">
<Layout>
<DockLayout DefaultLayoutInput="Top" />
</Layout>
<Graphic Content="{styles:Styles.IconZuneAbout}" StretchingPolicy="Uniform" SizingPolicy="SizeToContent" />
<Panel Layout="VerticalFlow" Margins="10, 10, 0, 10">
<Children>
<label:Label Content="{zuneUI:Shell.LoadString(zuneUI:StringId.IDS_ABOUTDIALOG_COPYRIGHT_LINE1)}" Style="{styles:SharedStyles.DialogTextStyle}" />
<label:Label Content="{zuneUI:Shell.LoadString(zuneUI:StringId.IDS_ABOUTDIALOG_COPYRIGHT_LINE2)}" Style="{styles:SharedStyles.DialogTextStyle}" />
@@ -56,7 +43,7 @@
<Panel Layout="HorizontalFlow">
<Children>
<label:Label Content="{zuneUI:Shell.LoadString(zuneUI:StringId.IDS_ABOUTDIALOG_PRODUCT_ID)}" Style="{styles:SharedStyles.DialogTextStyle}" />
<label:Label Content="{zuneUI:SoftwareUpdates.PID}" Margins="5, 0, 0, 0" Style="{styles:SharedStyles.DialogTextStyle}" />
<label:Label Content="{zuneUI:SoftwareUpdates.PID}" Margins="5, 0, -100, 0" Style="{styles:SharedStyles.DialogTextStyle}" />
</Children>
</Panel>
<label:Label Name="GDIModeLabel" Visible="false" Style="{styles:SharedStyles.DialogTextStyle}" />
@@ -65,12 +52,7 @@
</Children>
</Panel>
<label:Label Content="{zuneUI:Shell.LoadString(zuneUI:StringId.IDS_ABOUTDIALOG_WARNING)}" Style="{styles:SharedStyles.DialogTextStyle}" WordWrap="true" />
<Panel Layout="VerticalFlow" Margins="0, 10, 0, 0">
<Children>
<linkButtons:ExternalLink Model="{Dialog.TechSupportLink}" ToolTipEnabled="false" TileMinSize="160, 16" />
<button:BigActionButton Model="{Dialog.Cancel}" Margins="0, 10, 0, 0" ToolTipEnabled="false" FocusOrder="0" />
</Children>
</Panel>
<linkButtons:ExternalLink Model="{Dialog.TechSupportLink}" ToolTipEnabled="false" TileMinSize="160, 16" Margins="0, 10, 0, 0" />
</Children>
</Panel>
</Content>
+224
View File
@@ -0,0 +1,224 @@
<?xml version="1.0" encoding="utf-16"?>
<UIX xmlns="http://schemas.microsoft.com/2007/uix" xmlns:animations="res://ZuneShellResources!Animations.uix" xmlns:zuneUI="assembly://ZuneShell/ZuneUI" xmlns:styles="res://ZuneShellResources!Styles.uix" xmlns:linkButtons="res://ZuneShellResources!LinkButtons.uix" xmlns:label="res://UIXControls!Label.uix" xmlns:splitter="res://UIXControls!Splitter.uix" xmlns:gasGauge="res://ZuneShellResources!GasGauge.uix" xmlns:pageStack="res://ZuneShellResources!PageStack.uix" xmlns:devicelandElements="res://ZuneShellResources!DevicelandElements.uix" xmlns:deviceIcons="res://ZuneShellResources!DeviceIcons.uix">
<Class Name="Constants" Shared="true">
<Properties>
<String String="{zuneUI:Shell.LoadString(zuneUI:StringId.IDS_PLEASE_CONNECT_TO_SEE_STATUS)}" Name="PleaseConnectForStatusText" />
<String String="{zuneUI:Shell.LoadString(zuneUI:StringId.IDS_PLEASE_CONNECT_TO_SEE_CONTENTS)}" Name="PleaseConnectForContentsText" />
<String String="{zuneUI:Shell.LoadString(zuneUI:StringId.IDS_SIDELOADER_IS_BLOCKING_STATUS)}" Name="SideloaderStatusBaseText" />
<String String="{zuneUI:Shell.LoadString(zuneUI:StringId.IDS_SIDELOADER_IS_BLOCKING_CONTENTS)}" Name="SideloaderContentsBaseText" />
</Properties>
</Class>
<UI Name="DeviceBackground" Base="pageStack:PageBase">
<Locals>
<Window Name="Window" />
<zuneUI:UIDevice UIDevice="{null}" Name="Device" />
</Locals>
<Scripts>
<Script>[DeclareTrigger(zuneUI:SyncControls.Instance.CurrentDevice)]
object isWindowsPhone = #zuneUI:SyncControls.Instance.CurrentDevice #.SupportsBrandingType(zuneUI:DeviceBranding.WindowsPhone);
/* UIB_0068 */
if (Page is not zuneUI:Deviceland)
goto UIB_008A;
WindowsPhoneHorizon.Visible = isWindowsPhone;
Horizon.Visible = !isWindowsPhone;
goto UIB_009A;
Horizon.Visible = false;
WindowsPhoneHorizon.Visible = false;</Script>
<Script>[DeclareTrigger(Page.Device), DeclareTrigger(zuneUI:SyncControls.Instance.CurrentDevice)]
/* UIB_00A4 */
if (Page is not zuneUI:DeviceOverfillLand)
goto UIB_00BB;
Device = ((zuneUI:DeviceOverfillLand)Page).Device;
goto UIB_00C5;
Device = #zuneUI:SyncControls.Instance.CurrentDevice #;</Script>
<Script>[DeclareTrigger(Device.IconSet)]
/* UIB_00CE */
if (Device == null)
goto UIB_00E3;
BackgroundOverlayGraphic.Content = #Device.IconSet #.Background;</Script>
<Script>[DeclareTrigger(Window.Active)]
/* UIB_00EA */
if (!#Window.Active #)
goto UIB_010C;
BackgroundOverlayGraphic.Margins = new Inset(0, 0, 1, 1);
goto UIB_0124;
BackgroundOverlayGraphic.Margins = new Inset(0, 0, 0, 0);</Script>
<Script>[DeclareTrigger(Window.WindowState)]
/* UIB_0132 */
if (#Window.WindowState # != WindowState.Maximized)
goto UIB_0154;
BackgroundOverlayGraphic.Margins = new Inset(0, 0, 0, 0);
goto UIB_016C;
BackgroundOverlayGraphic.Margins = new Inset(0, 0, 1, 1);</Script>
</Scripts>
<Content>
<Panel Background="255, 255, 255, 255" Margins="0, 0, 1, 1" Layout="Form">
<Children>
<Graphic Name="WindowsPhoneHorizon" Content="{styles:Styles.WindowsPhoneDeviceHorizon}" StretchingPolicy="Fill">
<LayoutInput>
<FormLayoutInput Left="Parent,0" Top="Parent,0" Right="Parent,1" />
</LayoutInput>
</Graphic>
<Graphic Name="Horizon" Content="{styles:Styles.DeviceHorizon}">
<LayoutInput>
<FormLayoutInput Left="Parent,0" Top="Parent,0" />
</LayoutInput>
</Graphic>
<Graphic Name="BackgroundOverlayGraphic">
<Animations>
<Animation Animation="{animations:Animations.BasicContentChangeShow}" />
<Animation Animation="{animations:Animations.BasicContentChangeHide}" />
</Animations>
<LayoutInput>
<FormLayoutInput Left="Parent,0" Right="Parent,1" Top="Parent,0" />
</LayoutInput>
</Graphic>
</Children>
</Panel>
</Content>
</UI>
<UI Name="GasGauge" Base="pageStack:PageBase">
<Scripts>
<Script>[DeclareTrigger(zuneUI:SyncControls.Instance.CurrentDevice.IsConnectedToClient)]
GasGauge.Visible = #zuneUI:SyncControls.Instance.CurrentDevice #.IsConnectedToClient #;</Script>
<Script>[DeclareTrigger(zuneUI:SyncControls.Instance.CurrentDevice.ActualGasGauge)]
GasGauge.Model = #zuneUI:SyncControls.Instance.CurrentDevice #.ActualGasGauge #;</Script>
<Script>[DeclareTrigger(#zuneUI:SyncControls.Instance.CurrentDevice #.IsSyncing), DeclareTrigger(zuneUI:SyncControls.Instance.CurrentDevice.PredictedGasGauge)]
/* UIB_02FC */
if (!#zuneUI:SyncControls.Instance.CurrentDevice #.IsSyncing #)
goto UIB_0316;
GasGauge.PredictionModel = #zuneUI:SyncControls.Instance.CurrentDevice.PredictedGasGauge #;
goto UIB_031E;
GasGauge.PredictionModel = null;</Script>
</Scripts>
<Content>
<gasGauge:GasGauge Name="GasGauge" Model="{zuneUI:SyncControls.Instance.CurrentDevice.ActualGasGauge}" />
</Content>
</UI>
<UI Name="PleaseConnect">
<Properties>
<Boolean Boolean="false" Name="IsStatusPage" />
</Properties>
<Locals>
<zuneUI:SyncControls SyncControls="{zuneUI:SyncControls.Instance}" Name="SyncControls" />
</Locals>
<Scripts>
<Script>[DeclareTrigger(#SyncControls.CurrentDevice #.IsConnectedToSideloader), DeclareTrigger(SyncControls.CurrentDevice.OwnerApplicationName)]
object isConnectedToSideloader = #SyncControls.CurrentDevice #.IsConnectedToSideloader #;
/* UIB_03CB */
if (!IsStatusPage)
goto UIB_0402;
/* UIB_03D3 */
if (!isConnectedToSideloader)
goto UIB_03F3;
Message.Content = devicelandElements:Constants.SideloaderStatusBaseText.Format(#SyncControls.CurrentDevice.OwnerApplicationName #);
goto UIB_03FD;
Message.Content = devicelandElements:Constants.PleaseConnectForStatusText;
goto UIB_042F;
/* UIB_0405 */
if (!isConnectedToSideloader)
goto UIB_0425;
Message.Content = devicelandElements:Constants.SideloaderContentsBaseText.Format(SyncControls.CurrentDevice.OwnerApplicationName);
goto UIB_042F;
Message.Content = devicelandElements:Constants.PleaseConnectForContentsText;</Script>
</Scripts>
<Content>
<label:Label Name="Message" Style="{styles:SharedStyles.PleaseConnectStyle}" WordWrap="true" Alignment="Near">
<Animations>
<Animation Animation="{animations:Animations.DeviceLandUIElementSlide}" />
</Animations>
</label:Label>
</Content>
</UI>
<UI Name="PleaseConnectPanel" Base="splitter:SplitPanel">
<Content>
<devicelandElements:PleaseConnect />
</Content>
</UI>
<UI Name="DeviceNameHeader" Base="label:Label">
<Properties>
<zuneUI:UIDevice UIDevice="{zuneUI:UIDeviceList.NullDevice}" Name="Device" />
<Boolean Boolean="false" Name="ShowToolTipWhenClipped" />
<Inset Inset="-3, -15, 20, 0" Name="Margins" />
<Boolean Name="FormatForPivots" />
</Properties>
<Scripts>
<Script>/* UIB_04E1 */
if (!FormatForPivots)
goto UIB_04FB;
Margins = new Inset(-3, -15, 320, 0);</Script>
<Script>[DeclareTrigger(Device.IconSet), DeclareTrigger(Device.IsConnectedToPC)]
object DeviceNameStyles = new Dictionary();
TextStyle DeviceNameStyle = styles:SharedStyles.DeviceNameStyle;
TextStyle DeviceSizeStyle = styles:SharedStyles.DeviceSizeStyle;
object iconSet = #Device.IconSet #;
/* UIB_0521 */
if (!#Device.IsConnectedToPC #)
goto UIB_0578;
/* UIB_052F */
if (!Device.SupportsBrandingType(zuneUI:DeviceBranding.WindowsPhone))
goto UIB_054D;
DeviceNameStyle.Color = styles:Styles.WindowsPhoneBlue;
DeviceSizeStyle.Color = styles:Styles.WindowsPhoneBlueLight;
goto UIB_0573;
DeviceNameStyle.Color = deviceIcons:ColorHelper.GetColor(iconSet.Colors.Dark);
DeviceSizeStyle.Color = deviceIcons:ColorHelper.GetColor(iconSet.Colors.Light);
goto UIB_058C;
DeviceNameStyle.Color = styles:Styles.LightGray;
DeviceSizeStyle.Color = styles:Styles.LightGray;
DeviceNameStyles.set_Item("b", DeviceNameStyle);
DeviceNameStyles.set_Item("l", DeviceSizeStyle);
NamedStyles = DeviceNameStyles;</Script>
<Script>Label.Margins = Margins;</Script>
<Script>[DeclareTrigger(Device.IsValid), DeclareTrigger(Device.NameXMLEscaped), DeclareTrigger(Device.AdvertisedCapacity)]
/* UIB_05DC */
if (!#Device.IsValid # || !!Device.SupportsBrandingType(zuneUI:DeviceBranding.WindowsPhone))
goto UIB_05F2;
/* UIB_05F2 */
if (!Device.IsValid || !!Device.SupportsBrandingType(zuneUI:DeviceBranding.WindowsPhone) || !!Device.SupportsBrandingType(zuneUI:DeviceBranding.Kin))
goto UIB_0615;
Content = string.Format(zuneUI:Shell.LoadString(zuneUI:StringId.IDS_DEVICE_NAME_STRING), #Device.NameXMLEscaped #, #Device.AdvertisedCapacity #);
goto UIB_0625;
Content = string.Format("&lt;b&gt;{0}&lt;/b&gt;", Device.NameXMLEscaped);</Script>
</Scripts>
</UI>
<UI Name="CurrentDeviceNameHeader" Base="devicelandElements:DeviceNameHeader">
<Properties>
<zuneUI:UIDevice UIDevice="{zuneUI:SyncControls.Instance.CurrentDevice}" Name="Device" />
</Properties>
<Scripts>
<Script>[DeclareTrigger(zuneUI:SyncControls.Instance.CurrentDevice)]
Device = #zuneUI:SyncControls.Instance.CurrentDevice #;</Script>
</Scripts>
</UI>
<UI Name="OffloadedContentFooter" Base="pageStack:PageBase">
<Scripts>
<Script>[DeclareTrigger(zuneUI:SyncControls.Instance.CurrentDevice)]
Warning.Device = #zuneUI:SyncControls.Instance.CurrentDevice #;</Script>
</Scripts>
<Content>
<devicelandElements:OffloadedContentWarning Name="Warning" Device="{zuneUI:SyncControls.Instance.CurrentDevice}" Margins="8" />
</Content>
</UI>
<UI Name="OffloadedContentWarning">
<Properties>
<zuneUI:UIDevice UIDevice="$Required" Name="Device" />
</Properties>
<Locals>
<zuneUI:WebHelpCommand Name="WebLinkCommand" />
</Locals>
<Scripts>
<Script>[DeclareTrigger(Device.OffloadedContentMessage)]
WebLinkCommand.Description = #Device.OffloadedContentMessage #;</Script>
<Script>[DeclareTrigger(Device.OffloadedContentUrl)]
WebLinkCommand.Url = #Device.OffloadedContentUrl #;</Script>
</Scripts>
<Content>
<linkButtons:ExternalLink Model="{WebLinkCommand}" WordWrap="true" ContentType="{typeof(linkButtons:LabelAndBottomAlignedIconContent)}">
<NamedStyles>
<TextStyle TextStyle="{styles:SharedStyles.OffloadedContentLinkSubheadingStyle}" Name="h" />
</NamedStyles>
</linkButtons:ExternalLink>
</Content>
</UI>
</UIX>
File diff suppressed because it is too large Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large Load Diff
+13 -12
View File
@@ -358,7 +358,7 @@
<Inset Inset="{styles1:Styles.CellPadding}" Name="CellPadding" />
<Int32 Int32="11" Name="PrimaryPivotSpacing" />
<Int32 Int32="13" Name="SecondaryPivotSpacing" />
<Int32 Int32="{(SecondaryPivotSpacing) + (10)}" Name="SecondaryPivotSpacingCDLand" />
<Int32 Int32="{SecondaryPivotSpacing + 10}" Name="SecondaryPivotSpacingCDLand" />
<Single Single="0.3" Name="ContentTypesFilterAlpha" />
<Int32 Int32="5000" Name="PressEscapeToExitTimeout" />
<Image Source="res://ZuneShellResources!transparent.png" Name="TransparentPixel" />
@@ -818,12 +818,13 @@
<Image Source="res://ZuneShellResources!WindowsPhoneEnergyBar.png" Name="WindowsPhoneEnergyBar" />
<Image Source="res://ZuneShellResources!WindowsPhoneAppList.png" Name="WindowsPhoneAppList" />
</Properties>
<Scripts>
<Script>void UpdateDefaultFrameBackground()
<Methods><![CDATA[
void UpdateDefaultFrameBackground()
{
DefaultBackgroundImage = new Image(this.GetDefaultFrameBackground());
}</Script>
<Script>string GetDefaultFrameBackground()
}
string GetDefaultFrameBackground()
{
source = null;
/* UIB_001B */
@@ -833,23 +834,23 @@
if (zuneUI:ZuneShell.DefaultInstance.CurrentPage is zuneUI:StartupPage)
goto UIB_0038;
/* UIB_0038 */
if ((zuneUI:ZuneShell.DefaultInstance.CurrentPage is zuneUI:StartupPage) &amp;&amp; (string.IsNullOrEmpty(zuneUI:Shell.SessionStartupPath)))
if (zuneUI:ZuneShell.DefaultInstance.CurrentPage is zuneUI:StartupPage && string.IsNullOrEmpty(zuneUI:Shell.SessionStartupPath))
goto UIB_0054;
/* UIB_0058 */
if ((zuneUI:ZuneShell.DefaultInstance.CurrentPage is not zuneUI:QuickplayPage) &amp;&amp; (((zuneUI:ZuneShell.DefaultInstance.CurrentPage is not zuneUI:StartupPage) || (!((string.IsNullOrEmpty(zuneUI:Shell.SessionStartupPath))))) || ((configuration:ClientConfiguration.Shell.StartupPage) != (zuneUI:Shell.MainFrame.Quickplay.DefaultUIPath))))
if (zuneUI:ZuneShell.DefaultInstance.CurrentPage is not zuneUI:QuickplayPage && (zuneUI:ZuneShell.DefaultInstance.CurrentPage is not zuneUI:StartupPage || !(string.IsNullOrEmpty(zuneUI:Shell.SessionStartupPath))) || (configuration:ClientConfiguration.Shell.StartupPage != zuneUI:Shell.MainFrame.Quickplay.DefaultUIPath))
goto UIB_0083;
/* UIB_0066 */
if (zuneUI:ZuneShell.DefaultInstance.CurrentPage is zuneUI:StartupPage)
goto UIB_007F;
/* UIB_0083 */
if (((zuneUI:ZuneShell.DefaultInstance.CurrentPage is zuneUI:QuickplayPage) || (((zuneUI:ZuneShell.DefaultInstance.CurrentPage is zuneUI:StartupPage) &amp;&amp; (string.IsNullOrEmpty(zuneUI:Shell.SessionStartupPath))) &amp;&amp; ((configuration:ClientConfiguration.Shell.StartupPage) == (zuneUI:Shell.MainFrame.Quickplay.DefaultUIPath)))) || ((zuneUI:ZuneShell.DefaultInstance.CurrentPage is zuneUI:StartupPage) &amp;&amp; ((zuneUI:Shell.SessionStartupPath) == (zuneUI:Shell.MainFrame.Quickplay.DefaultUIPath))))
if ((zuneUI:ZuneShell.DefaultInstance.CurrentPage is zuneUI:QuickplayPage || (zuneUI:ZuneShell.DefaultInstance.CurrentPage is zuneUI:StartupPage && string.IsNullOrEmpty(zuneUI:Shell.SessionStartupPath)) && (configuration:ClientConfiguration.Shell.StartupPage == zuneUI:Shell.MainFrame.Quickplay.DefaultUIPath)) || (zuneUI:ZuneShell.DefaultInstance.CurrentPage is zuneUI:StartupPage && zuneUI:Shell.SessionStartupPath == zuneUI:Shell.MainFrame.Quickplay.DefaultUIPath))
goto UIB_0097;
source = QuickplayFrameBackground.Value;
goto UIB_00AA;
source = (zuneUI:NamedStringOption)FrameBackgrounds[DefaultBackgroundIndex].Value;
source = ((zuneUI:NamedStringOption)FrameBackgrounds[DefaultBackgroundIndex]).Value;
return source;
}</Script>
</Scripts>
}
]]></Methods>
</Class>
<Class Name="SharedStyles" Shared="true">
<Properties>
@@ -2636,7 +2637,7 @@ Default.Color = styles:Styles.NowPlayingMarketplaceColor;</Script>
<Boolean Name="AntialiasEdges" />
</Properties>
<Scripts>
<Script>AntialiasEdges = (iris:Application.RenderingType) != (iris:RenderingType.GDI);</Script>
<Script>AntialiasEdges = iris:Application.RenderingType != iris:RenderingType.GDI;</Script>
</Scripts>
</Class>
<Class Name="SyncBulletStyle" Base="style:StyleSet">