mirror of
https://github.com/SabreTools/MPF.git
synced 2026-02-10 05:40:05 +00:00
158 lines
9.0 KiB
XML
158 lines
9.0 KiB
XML
<windows:WindowBase x:Class="MPF.UI.Core.Windows.RingCodeGuideWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:controls="clr-namespace:MPF.UI.Core.UserControls"
|
|
xmlns:windows="clr-namespace:MPF.UI.Core.Windows"
|
|
mc:Ignorable="d"
|
|
Title="Ring Code Guide" Width="500" WindowStyle="None"
|
|
WindowStartupLocation="CenterOwner" ResizeMode="CanMinimize" SizeToContent="Height"
|
|
BorderBrush="DarkGray" BorderThickness="2">
|
|
|
|
<WindowChrome.WindowChrome>
|
|
<WindowChrome CaptionHeight="0" ResizeBorderThickness="0" />
|
|
</WindowChrome.WindowChrome>
|
|
|
|
<Grid>
|
|
<StackPanel Orientation="Vertical">
|
|
<Grid Margin="0,10,0,0">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="25"/>
|
|
<ColumnDefinition Width="115"/>
|
|
<ColumnDefinition/>
|
|
<ColumnDefinition/>
|
|
<ColumnDefinition/>
|
|
<ColumnDefinition Width="50"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Image Grid.Column="0" Source="/Images/Icon.ico" Height="20" Width="20" Margin="1" />
|
|
<Label Grid.Column="1" Grid.ColumnSpan="4" HorizontalAlignment="Stretch" HorizontalContentAlignment="Center" MouseDown="TitleMouseDown">
|
|
<Label.Content>
|
|
<TextBlock TextAlignment="Center"><Bold>Ring Code Guide</Bold></TextBlock>
|
|
</Label.Content>
|
|
<Label.ContextMenu>
|
|
<ContextMenu Background="{DynamicResource {x:Static SystemColors.WindowBrushKey}}"
|
|
Foreground="{DynamicResource {x:Static SystemColors.WindowTextBrushKey}}"
|
|
Style="{DynamicResource CustomContextMenuStyle}">
|
|
<MenuItem Header="Minimize" Click="MinimizeButtonClick" Width="185"
|
|
Background="{DynamicResource {x:Static SystemColors.WindowBrushKey}}"
|
|
Foreground="{DynamicResource {x:Static SystemColors.WindowTextBrushKey}}"
|
|
BorderBrush="{DynamicResource {x:Static SystemColors.WindowBrushKey}}"
|
|
Template="{DynamicResource CustomMenuItemTemplate}"/>
|
|
<MenuItem Header="Close" Click="CloseButtonClick" Width="185"
|
|
Background="{DynamicResource {x:Static SystemColors.WindowBrushKey}}"
|
|
Foreground="{DynamicResource {x:Static SystemColors.WindowTextBrushKey}}"
|
|
BorderBrush="{DynamicResource {x:Static SystemColors.WindowBrushKey}}"
|
|
Template="{DynamicResource CustomMenuItemTemplate}"/>
|
|
</ContextMenu>
|
|
</Label.ContextMenu>
|
|
</Label>
|
|
<Grid Grid.Column="5">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition/>
|
|
<ColumnDefinition/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Button x:Name="MinimizeButton" Grid.Column="0" BorderThickness="0" Background="Transparent" Style="{DynamicResource CustomButtonStyle}" Click="MinimizeButtonClick">
|
|
<Path Data="M 0,0 L 10,0" Stroke="{Binding Path=Foreground,RelativeSource={RelativeSource AncestorType={x:Type Button}}}" StrokeThickness="1"/>
|
|
</Button>
|
|
<Button x:Name="CloseButton" Grid.Column="1" BorderThickness="0" Background="Transparent" Style="{DynamicResource CustomButtonStyle}" Click="CloseButtonClick">
|
|
<Path Data="M 0,0 L 12,12 M 0,12 L 12,0" Stroke="{Binding Path=Foreground,RelativeSource={RelativeSource AncestorType={x:Type Button}}}" StrokeThickness="1"/>
|
|
</Button>
|
|
</Grid>
|
|
</Grid>
|
|
|
|
<TabControl Background="{DynamicResource {x:Static SystemColors.WindowBrushKey}}"
|
|
Foreground="{DynamicResource {x:Static SystemColors.WindowTextBrushKey}}"
|
|
Style="{DynamicResource CustomTabControlStyle}">
|
|
<TabItem Header="1-Layer Ringcode" Style="{DynamicResource CustomTabItemStyle}">
|
|
<Grid Margin="5,5,5,5">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition/>
|
|
<RowDefinition/>
|
|
<RowDefinition/>
|
|
<RowDefinition/>
|
|
<RowDefinition/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<Image Grid.Row="0" Source="../Images/ring-code-guide-1-layer.png"
|
|
HorizontalAlignment="Center" Stretch="Fill" Width="500" Height="500"
|
|
RenderOptions.BitmapScalingMode="HighQuality" />
|
|
<Label Grid.Row="1">
|
|
<Label.Content>
|
|
<TextBlock><Bold Foreground="Red">1. Mastering Ring:</Bold> Sony DADC<tab>A0100368905-0101<tab>13</TextBlock>
|
|
</Label.Content>
|
|
</Label>
|
|
<Label Grid.Row="2">
|
|
<Label.Content>
|
|
<TextBlock><Bold Foreground="Green">2. Mastering SID:</Bold> IFPI L553</TextBlock>
|
|
</Label.Content>
|
|
</Label>
|
|
<Label Grid.Row="3">
|
|
<Label.Content>
|
|
<TextBlock><Bold Foreground="Purple">3. Toolstamp/Mastering Code:</Bold> A2</TextBlock>
|
|
</Label.Content>
|
|
</Label>
|
|
<Label Grid.Row="4">
|
|
<Label.Content>
|
|
<TextBlock><Bold Foreground="LightBlue">4. Mould SID:</Bold> IFPI 94V1</TextBlock>
|
|
</Label.Content>
|
|
</Label>
|
|
</Grid>
|
|
</TabItem>
|
|
|
|
<TabItem Header="2-Layer Ringcode" Style="{DynamicResource CustomTabItemStyle}">
|
|
<Grid Margin="5,5,5,5">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition/>
|
|
<RowDefinition/>
|
|
<RowDefinition/>
|
|
<RowDefinition/>
|
|
<RowDefinition/>
|
|
<RowDefinition/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<Image Grid.Row="0" Source="../Images/ring-code-guide-2-layer.png"
|
|
HorizontalAlignment="Center" Stretch="Fill" Width="475" Height="500"
|
|
RenderOptions.BitmapScalingMode="HighQuality" />
|
|
<Label Grid.Row="1">
|
|
<Label.Content>
|
|
<TextBlock><Bold Foreground="Red">1. Outer Mastering Ring:</Bold> IM01501A-L1<tab>03 +<tab>+</TextBlock>
|
|
</Label.Content>
|
|
</Label>
|
|
<Label Grid.Row="2">
|
|
<Label.Content>
|
|
<TextBlock><Bold Foreground="Green">2. Inner Mastering Ring:</Bold> IM01501A-L0<tab>01 +<tab>+</TextBlock>
|
|
</Label.Content>
|
|
</Label>
|
|
<Label Grid.Row="3">
|
|
<Label.Content>
|
|
<TextBlock><Bold Foreground="Purple">3. Outer Mastering SID:</Bold> IFPI LB48</TextBlock>
|
|
</Label.Content>
|
|
</Label>
|
|
<Label Grid.Row="4">
|
|
<Label.Content>
|
|
<TextBlock><Bold Foreground="LightBlue">4. Inner Mastering SID:</Bold> IFPI LB48</TextBlock>
|
|
</Label.Content>
|
|
</Label>
|
|
<Label Grid.Row="5">
|
|
<Label.Content>
|
|
<TextBlock><Bold>Note:</Bold> See the 1-Layer guide for more details on additional fields</TextBlock>
|
|
</Label.Content>
|
|
</Label>
|
|
</Grid>
|
|
</TabItem>
|
|
</TabControl>
|
|
</StackPanel>
|
|
</Grid>
|
|
</windows:WindowBase>
|