|
6 | 6 | mc:Ignorable="d" d:DesignWidth="847" d:DesignHeight="590" |
7 | 7 | Width="847" Height="557" |
8 | 8 | x:Class="PS5_NOR_Modifier.MainWindow" |
9 | | - Title="MainWindow" FontSize="12" WindowStartupLocation="CenterScreen"> |
| 9 | + Title="PS5 NOR Modifier" FontSize="12" WindowStartupLocation="CenterScreen"> |
10 | 10 | <Grid> |
11 | 11 | <Grid RowDefinitions="85 55 * 81 22" ColumnDefinitions="*" Margin="10 10 10 0"> |
12 | 12 | <StackPanel Grid.Row="0" Orientation="Horizontal"> |
|
28 | 28 | </TextBlock> |
29 | 29 | <TabControl Grid.Row="2" Background="#20000000" Padding="0"> |
30 | 30 | <TabItem Header="NOR Modifier"> |
31 | | - <Grid RowDefinitions="50 *" ColumnDefinitions="* * * *" Margin="4"> |
| 31 | + <Grid RowDefinitions="50 *" ColumnDefinitions="Auto * Auto *" Margin="4"> |
32 | 32 | <StackPanel Grid.Column="0" Grid.Row="0" Grid.ColumnSpan="4"> |
33 | 33 | <Label>Select NOR Dump</Label> |
34 | 34 | <Grid ColumnDefinitions="* Auto"> |
|
45 | 45 | <Label>File Size:</Label> |
46 | 46 | <Label>WiFi MAC Address:</Label> |
47 | 47 | <Label>LAN MAC Address:</Label> |
| 48 | + <StackPanel.Styles> |
| 49 | + <Style Selector="Label"> |
| 50 | + <Setter Property="Padding" Value="3 5 15 5" /> |
| 51 | + </Style> |
| 52 | + </StackPanel.Styles> |
48 | 53 | </StackPanel> |
49 | 54 | <StackPanel Grid.Column="1" Grid.Row="1" Margin="0 22 0 0"> |
50 | 55 | <Label Name="SerialNumberOut">...</Label> |
|
54 | 59 | <Label Name="FileSizeOut">...</Label> |
55 | 60 | <Label Name="WiFiMACAddressOut">...</Label> |
56 | 61 | <Label Name="LANMACAddressOut">...</Label> |
| 62 | + <StackPanel.Styles> |
| 63 | + <Style Selector="Label"> |
| 64 | + <Setter Property="Padding" Value="3 5" /> |
| 65 | + </Style> |
| 66 | + </StackPanel.Styles> |
57 | 67 | </StackPanel> |
58 | 68 | <StackPanel Grid.Column="2" Grid.Row="1"> |
59 | 69 | <Label FontWeight="Bold">Modify Values</Label> |
|
64 | 74 | <Label>LAN MAC Address:</Label> |
65 | 75 | <StackPanel.Styles> |
66 | 76 | <Style Selector="Label"> |
67 | | - <Setter Property="Padding" Value="3 5" /> |
| 77 | + <Setter Property="Padding" Value="3 5 15 5" /> |
68 | 78 | </Style> |
69 | 79 | </StackPanel.Styles> |
70 | 80 | </StackPanel> |
71 | 81 | <StackPanel Grid.Column="3" Grid.Row="1" Margin="0 27 0 0"> |
72 | 82 | <TextBox Name="SerialNumberIn" /> |
73 | | - <ComboBox Name="BoardVariantIn"> |
74 | | - <ComboBoxItem>CFI-1000A</ComboBoxItem> |
75 | | - <ComboBoxItem>CFI-1000A01</ComboBoxItem> |
76 | | - <ComboBoxItem>CFI-1000B</ComboBoxItem> |
77 | | - <ComboBoxItem>CFI-1002A</ComboBoxItem> |
78 | | - <ComboBoxItem>CFI-1008A</ComboBoxItem> |
79 | | - <ComboBoxItem>CFI-1014A</ComboBoxItem> |
80 | | - <ComboBoxItem>CFI-1015A</ComboBoxItem> |
81 | | - <ComboBoxItem>CFI-1015B</ComboBoxItem> |
82 | | - <ComboBoxItem>CFI-1016A</ComboBoxItem> |
83 | | - <ComboBoxItem>CFI-1018A</ComboBoxItem> |
84 | | - <ComboBoxItem>CFI-1100A01</ComboBoxItem> |
85 | | - <ComboBoxItem>CFI-1102A</ComboBoxItem> |
86 | | - <ComboBoxItem>CFI-1108A</ComboBoxItem> |
87 | | - <ComboBoxItem>CFI-1109A</ComboBoxItem> |
88 | | - <ComboBoxItem>CFI-1114A</ComboBoxItem> |
89 | | - <ComboBoxItem>CFI-1115A</ComboBoxItem> |
90 | | - <ComboBoxItem>CFI-1116A</ComboBoxItem> |
91 | | - <ComboBoxItem>CFI-1118A</ComboBoxItem> |
92 | | - <ComboBoxItem>CFI-1208A</ComboBoxItem> |
93 | | - <ComboBoxItem>CFI-1215A</ComboBoxItem> |
94 | | - <ComboBoxItem>CFI-1216A</ComboBoxItem> |
95 | | - <ComboBoxItem>DFI-T1000AA</ComboBoxItem> |
96 | | - <ComboBoxItem>DFI-D1000AA</ComboBoxItem> |
97 | | - </ComboBox> |
98 | | - <ComboBox Name="PS5ModelIn"> |
99 | | - <ComboBoxItem>Digital Edition</ComboBoxItem> |
100 | | - <ComboBoxItem>Disc Edition</ComboBoxItem> |
101 | | - </ComboBox> |
| 83 | + <ComboBox Name="BoardVariantIn" /> |
| 84 | + <ComboBox Name="PS5ModelIn" /> |
102 | 85 | <TextBox Name="WiFiMACAddressIn" IsEnabled="False" /> |
103 | 86 | <TextBox Name="LANMACAddressIn" IsEnabled="False" /> |
104 | 87 |
|
105 | | - <Button>Save New BIOS Information</Button> |
| 88 | + <Button Name="SaveButton" Click="SaveButton_OnClick" Margin="0 5 0 0">Save New BIOS Information</Button> |
106 | 89 | </StackPanel> |
107 | 90 | </Grid> |
108 | 91 | </TabItem> |
|
0 commit comments