-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainWindow.xaml
More file actions
752 lines (705 loc) · 75.4 KB
/
Copy pathMainWindow.xaml
File metadata and controls
752 lines (705 loc) · 75.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
<Window x:Class="Nexora.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Nexora PUBG Mobile Tool"
Icon="Assets/Icons/nexora.ico"
Width="1440"
Height="900"
MinWidth="1180"
MinHeight="700"
WindowStartupLocation="CenterScreen"
WindowStyle="None"
ResizeMode="CanResize"
AllowsTransparency="True"
Background="Transparent"
UseLayoutRounding="True"
SnapsToDevicePixels="True"
SourceInitialized="Window_SourceInitialized"
SizeChanged="Window_SizeChanged"
Loaded="Window_Loaded"
Closing="Window_Closing">
<Border Background="{StaticResource PageBackground}" BorderBrush="#263642" BorderThickness="1">
<Grid x:Name="MainLayoutGrid">
<Grid.RowDefinitions>
<RowDefinition Height="76" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition x:Name="SidebarColumn" Width="260" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<Border Grid.Row="0" Grid.ColumnSpan="2" Background="{StaticResource HeaderBackgroundBrush}" BorderBrush="#25343F" BorderThickness="0,0,0,1" MouseLeftButtonDown="TitleBar_MouseLeftButtonDown">
<Grid x:Name="TitleBarGrid">
<Grid.ColumnDefinitions>
<ColumnDefinition x:Name="TitleBrandColumn" Width="260" />
<ColumnDefinition Width="*" />
<ColumnDefinition Width="180" />
</Grid.ColumnDefinitions>
<Border Grid.ColumnSpan="3" Height="1" Background="#72C27A48" VerticalAlignment="Top" Opacity="0.55" IsHitTestVisible="False" />
<Border Grid.Column="0" Width="360" HorizontalAlignment="Left" Background="{StaticResource HeaderAccentGlowBrush}" Opacity="0.5" IsHitTestVisible="False" />
<StackPanel Grid.Column="0" Orientation="Horizontal" VerticalAlignment="Center" Margin="28,0,0,0">
<Border Width="36" Height="36" Background="#0D151D" BorderBrush="{StaticResource Accent}" BorderThickness="1" CornerRadius="8" Margin="0,0,12,0" Effect="{StaticResource AccentGlowEffect}">
<Image Source="Assets/Icons/nexora.ico" Width="26" Height="26" Stretch="Uniform" />
</Border>
<StackPanel VerticalAlignment="Center">
<TextBlock Text="NEXORA" Foreground="{StaticResource TextPrimary}" FontFamily="Bahnschrift SemiCondensed" FontSize="22" FontWeight="SemiBold" />
<TextBlock Text="PUBG MOBILE TOOL" Foreground="{StaticResource Accent}" FontFamily="Segoe UI" FontSize="9" FontWeight="SemiBold" />
</StackPanel>
</StackPanel>
<StackPanel Grid.Column="1" Orientation="Horizontal" HorizontalAlignment="Right" VerticalAlignment="Center" Margin="0,0,20,0">
<Border x:Name="TopConnectionPill" Background="{StaticResource PanelBackground}" BorderBrush="{StaticResource BrightOutlineBrush}" BorderThickness="1" CornerRadius="17" Padding="12,6">
<StackPanel Orientation="Horizontal">
<Ellipse x:Name="TopConnectionDot" Width="8" Height="8" Fill="{StaticResource TextMuted}" VerticalAlignment="Center" Margin="0,0,9,0" />
<TextBlock x:Name="TopConnectionText" Text="Not connected" Foreground="{StaticResource TextSecondary}" FontFamily="Segoe UI" FontSize="12" VerticalAlignment="Center" />
</StackPanel>
</Border>
<Border Width="1" Height="24" Background="#3A4C59" Margin="16,0,18,0" />
</StackPanel>
<Border Grid.Column="2" HorizontalAlignment="Right" VerticalAlignment="Center" Margin="0,0,14,0" Background="#0D151D" BorderBrush="#263642" BorderThickness="1" CornerRadius="8" Padding="2">
<StackPanel Orientation="Horizontal">
<Button x:Name="MinimizeWindowButton" Click="MinimizeButton_Click" Width="34" Height="28" Margin="0,0,2,0" Style="{StaticResource WindowControlButtonStyle}">
<Path Data="M 4,14 L 16,14" Stroke="{Binding Foreground, RelativeSource={RelativeSource AncestorType=Button}}" StrokeThickness="1.2" StrokeStartLineCap="Round" StrokeEndLineCap="Round" />
</Button>
<Button x:Name="MaximizeWindowButton" Click="MaximizeButton_Click" Width="34" Height="28" Margin="0,0,2,0" Style="{StaticResource WindowControlButtonStyle}">
<Path Data="M 4,4 L 16,4 L 16,16 L 4,16 Z" Stroke="{Binding Foreground, RelativeSource={RelativeSource AncestorType=Button}}" StrokeThickness="1.2" StrokeLineJoin="Round" Fill="Transparent" />
</Button>
<Button x:Name="CloseWindowButton" Click="CloseButton_Click" Width="34" Height="28" Style="{StaticResource CloseWindowButtonStyle}">
<Path Data="M 5,5 L 15,15 M 15,5 L 5,15" Stroke="{Binding Foreground, RelativeSource={RelativeSource AncestorType=Button}}" StrokeThickness="1.3" StrokeStartLineCap="Round" StrokeEndLineCap="Round" />
</Button>
</StackPanel>
</Border>
</Grid>
</Border>
<Border Grid.Row="1" Grid.Column="0" Background="{StaticResource SidebarBackground}" BorderBrush="#25343F" BorderThickness="0,0,1,0">
<DockPanel>
<Border DockPanel.Dock="Bottom" Margin="18,18,18,20" Padding="14" BorderBrush="{StaticResource BrightOutlineBrush}" BorderThickness="1" CornerRadius="9" Background="{StaticResource ConnectionCardBackgroundBrush}">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<Grid Grid.Row="0">
<TextBlock Text="GAMELOOP LINK" Foreground="{StaticResource TextMuted}" FontSize="10" FontWeight="SemiBold" />
<TextBlock Text="LOCAL TOOL" Foreground="{StaticResource Accent}" FontSize="9" FontWeight="SemiBold" HorizontalAlignment="Right" />
</Grid>
<StackPanel Grid.Row="1" Orientation="Horizontal" Margin="0,10,0,0">
<Ellipse x:Name="SidebarConnectionDot" Width="8" Height="8" Fill="{StaticResource TextMuted}" VerticalAlignment="Center" Margin="0,0,9,0" />
<TextBlock x:Name="SidebarConnectionText" Text="NOT CONNECTED" Foreground="{StaticResource TextPrimary}" FontSize="11" FontWeight="SemiBold" />
</StackPanel>
<Grid Grid.Row="2" Margin="17,10,0,0">
<Grid.RowDefinitions><RowDefinition Height="24" /><RowDefinition Height="24" /></Grid.RowDefinitions>
<TextBlock Grid.Row="0" Text="GameLoop" Foreground="{StaticResource TextSecondary}" FontSize="12" />
<TextBlock Grid.Row="0" Text="EMULATOR" Foreground="{StaticResource TextMuted}" FontSize="10" HorizontalAlignment="Right" VerticalAlignment="Center" />
<TextBlock Grid.Row="1" x:Name="SidebarAdbText" Text="ADB: Offline" Foreground="{StaticResource TextMuted}" FontSize="12" />
</Grid>
<Button Grid.Row="3" x:Name="RefreshConnectionButton" Content="↻ Refresh Connection" Click="ConnectButton_Click" Style="{StaticResource OutlineButtonStyle}" FontSize="12" Padding="10,8" Margin="0,12,0,0" />
</Grid>
</Border>
<StackPanel Margin="0,22,0,0">
<TextBlock Text="WORKSPACE" Foreground="{StaticResource TextMuted}" FontSize="10" FontWeight="SemiBold" Margin="24,0,0,8" />
<RadioButton Tag="Graphics" GroupName="Navigation" IsChecked="True" Click="NavigationButton_Click" Style="{StaticResource NavButtonStyle}" Height="58">
<StackPanel Orientation="Horizontal">
<Grid Width="36" Height="22">
<Path Data="M 3,4 L 17,4 L 17,14 L 3,14 Z M 6,17 L 14,17 M 10,14 L 10,17 M 5,11 L 8,8 L 11,10 L 15,6" Width="20" Height="20" Stretch="Fill" Stroke="{Binding Foreground, RelativeSource={RelativeSource AncestorType=RadioButton}}" StrokeThickness="1.25" StrokeLineJoin="Round" StrokeStartLineCap="Round" StrokeEndLineCap="Round" />
</Grid>
<TextBlock Text="Graphics" VerticalAlignment="Center" />
</StackPanel>
</RadioButton>
<RadioButton Tag="Optimizer" GroupName="Navigation" Click="NavigationButton_Click" Style="{StaticResource NavButtonStyle}" Height="58">
<StackPanel Orientation="Horizontal"><TextBlock Text="" FontFamily="Segoe MDL2 Assets" FontSize="18" Width="36" TextAlignment="Center" /><TextBlock Text="Optimizer" VerticalAlignment="Center" /></StackPanel>
</RadioButton>
<RadioButton Tag="Network" GroupName="Navigation" Click="NavigationButton_Click" Style="{StaticResource NavButtonStyle}" Height="58">
<StackPanel Orientation="Horizontal">
<Grid Width="36" Height="22">
<Path Data="M 5,7 L 8,7 C 9.3,7 10,8 10,9 C 10,10 9.3,11 8,11 L 5,11 C 3.7,11 3,10 3,9 C 3,8 3.7,7 5,7 M 12,11 L 15,11 C 16.3,11 17,12 17,13 C 17,14 16.3,15 15,15 L 12,15 C 10.7,15 10,14 10,13 C 10,12 10.7,11 12,11 M 9,10 L 11,12" Width="20" Height="20" Stretch="Fill" Stroke="{Binding Foreground, RelativeSource={RelativeSource AncestorType=RadioButton}}" StrokeThickness="1.25" StrokeLineJoin="Round" StrokeStartLineCap="Round" StrokeEndLineCap="Round" />
</Grid>
<TextBlock Text="Network & View" VerticalAlignment="Center" />
</StackPanel>
</RadioButton>
<RadioButton Tag="Shortcuts" GroupName="Navigation" Click="NavigationButton_Click" Style="{StaticResource NavButtonStyle}" Height="58">
<StackPanel Orientation="Horizontal"><TextBlock Text="" FontFamily="Segoe MDL2 Assets" FontSize="18" Width="36" TextAlignment="Center" /><TextBlock Text="Shortcuts" VerticalAlignment="Center" /></StackPanel>
</RadioButton>
<RadioButton Tag="About" GroupName="Navigation" Click="NavigationButton_Click" Style="{StaticResource NavButtonStyle}" Height="58">
<StackPanel Orientation="Horizontal"><TextBlock Text="" FontFamily="Segoe MDL2 Assets" FontSize="18" Width="36" TextAlignment="Center" /><TextBlock Text="About" VerticalAlignment="Center" /></StackPanel>
</RadioButton>
</StackPanel>
</DockPanel>
</Border>
<Grid Grid.Row="1" Grid.Column="1" Background="{StaticResource PageBackground}">
<Grid x:Name="GraphicsView" Margin="34,20,34,18" ClipToBounds="True">
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="*" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<Border Grid.RowSpan="3" Background="{StaticResource GraphicsPageBackgroundBrush}" BorderBrush="#1B2B37" BorderThickness="1" CornerRadius="18" IsHitTestVisible="False" />
<Border Grid.RowSpan="3" Height="1" Background="#82C27A48" VerticalAlignment="Top" Margin="32,1,32,0" Opacity="0.7" IsHitTestVisible="False" />
<Ellipse Grid.RowSpan="3" Width="500" Height="500" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="-170,-175,0,0" Fill="{StaticResource GraphicsAccentGlowBrush}" Opacity="0.42" IsHitTestVisible="False" />
<Ellipse Grid.RowSpan="3" Width="480" Height="480" HorizontalAlignment="Right" VerticalAlignment="Bottom" Margin="0,0,-175,-175" Fill="{StaticResource GraphicsCoolGlowBrush}" Opacity="0.3" IsHitTestVisible="False" />
<Grid Grid.Row="0" Margin="18,12,18,18">
<StackPanel Orientation="Horizontal">
<Border Width="4" Height="58" Background="{StaticResource Accent}" CornerRadius="2" Margin="0,0,14,0" Effect="{StaticResource AccentGlowEffect}" />
<StackPanel VerticalAlignment="Center">
<TextBlock Text="VISUAL PROFILE" Foreground="{StaticResource Accent}" FontSize="10" FontWeight="SemiBold" Margin="0,0,0,5" />
<TextBlock Text="GRAPHICS SETTINGS" Foreground="{StaticResource TextPrimary}" FontFamily="Bahnschrift SemiCondensed" FontSize="31" FontWeight="SemiBold" />
<TextBlock Text="Fine-tune your PUBG Mobile visuals for the best balance of performance and quality." Foreground="{StaticResource TextSecondary}" FontSize="14" Margin="0,5,0,0" />
</StackPanel>
</StackPanel>
<StackPanel HorizontalAlignment="Right" Width="270">
<TextBlock Text="PUBG MOBILE VERSION" Foreground="{StaticResource TextSecondary}" FontSize="12" FontWeight="SemiBold" Margin="0,0,0,8" />
<ComboBox x:Name="PubgVersionComboBox" Style="{StaticResource InputComboBoxStyle}" SelectionChanged="PubgVersionComboBox_SelectionChanged" />
</StackPanel>
</Grid>
<Grid Grid.Row="1" Margin="18,0,18,0">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="26" />
<ColumnDefinition Width="350" />
</Grid.ColumnDefinitions>
<ScrollViewer Grid.Column="0" VerticalScrollBarVisibility="Auto" HorizontalScrollBarVisibility="Disabled" Padding="0,0,0,2">
<StackPanel>
<TextBlock Text="GRAPHICS QUALITY" Foreground="{StaticResource TextPrimary}" FontFamily="Bahnschrift SemiCondensed" FontSize="18" FontWeight="SemiBold" />
<TextBlock Text="Choose the overall graphics quality level." Style="{StaticResource SmallLabelStyle}" Margin="0,6,0,10" />
<UniformGrid Columns="6" Height="44" Margin="0,0,0,18">
<RadioButton x:Name="SmoothButton" Content="Smooth" GroupName="Quality" Style="{StaticResource SegmentButtonStyle}" Checked="SettingRadioButton_Checked" />
<RadioButton x:Name="BalancedButton" Content="Balanced" GroupName="Quality" Style="{StaticResource SegmentButtonStyle}" Checked="SettingRadioButton_Checked" />
<RadioButton x:Name="HdButton" Content="HD" GroupName="Quality" Style="{StaticResource SegmentButtonStyle}" Checked="SettingRadioButton_Checked" />
<RadioButton x:Name="HdrButton" Content="HDR" GroupName="Quality" Style="{StaticResource SegmentButtonStyle}" Checked="SettingRadioButton_Checked" />
<RadioButton x:Name="UltraHdButton" Content="Ultra HDR" GroupName="Quality" Style="{StaticResource SegmentButtonStyle}" Checked="SettingRadioButton_Checked" />
<RadioButton x:Name="UhdButton" Content="Extreme HDR" GroupName="Quality" Style="{StaticResource SegmentButtonStyle}" Checked="SettingRadioButton_Checked" ToolTip="Use the Extreme HDR graphics profile supported by PUBG Mobile." />
</UniformGrid>
<TextBlock Text="FRAME RATE" Foreground="{StaticResource TextPrimary}" FontFamily="Bahnschrift SemiCondensed" FontSize="18" FontWeight="SemiBold" />
<TextBlock Text="Select your preferred frame rate." Style="{StaticResource SmallLabelStyle}" Margin="0,6,0,10" />
<UniformGrid Columns="7" Height="44" Margin="0,0,0,18">
<RadioButton x:Name="LowButton" Content="Low" GroupName="FrameRate" Style="{StaticResource SegmentButtonStyle}" Checked="SettingRadioButton_Checked" />
<RadioButton x:Name="MediumButton" Content="Medium" GroupName="FrameRate" Style="{StaticResource SegmentButtonStyle}" Checked="SettingRadioButton_Checked" />
<RadioButton x:Name="HighButton" Content="High" GroupName="FrameRate" Style="{StaticResource SegmentButtonStyle}" Checked="SettingRadioButton_Checked" />
<RadioButton x:Name="UltraButton" Content="Ultra" GroupName="FrameRate" Style="{StaticResource SegmentButtonStyle}" Checked="SettingRadioButton_Checked" />
<RadioButton x:Name="ExtremeButton" Content="Extreme" GroupName="FrameRate" Style="{StaticResource SegmentButtonStyle}" Checked="SettingRadioButton_Checked" />
<RadioButton x:Name="Fps90Button" Content="Extreme+" GroupName="FrameRate" Style="{StaticResource SegmentButtonStyle}" Checked="SettingRadioButton_Checked" />
<RadioButton x:Name="Fps120Button" Content="Ultra Extreme" GroupName="FrameRate" Style="{StaticResource SegmentButtonStyle}" Checked="SettingRadioButton_Checked" />
</UniformGrid>
<TextBlock Text="VISUAL STYLE" Foreground="{StaticResource TextPrimary}" FontFamily="Bahnschrift SemiCondensed" FontSize="18" FontWeight="SemiBold" />
<TextBlock Text="Apply a visual filter to change color and atmosphere." Style="{StaticResource SmallLabelStyle}" Margin="0,6,0,12" />
<UniformGrid Columns="5" Height="132" Margin="0,0,0,18">
<ToggleButton x:Name="ClassicButton" Tag="Classic" Style="{StaticResource StyleCardButton}" Checked="StyleButton_Checked" Margin="0,0,10,0">
<Image Source="Assets/Styles/Classic.png" Stretch="UniformToFill" />
</ToggleButton>
<ToggleButton x:Name="ColorfulButton" Tag="Colorful" Style="{StaticResource StyleCardButton}" Checked="StyleButton_Checked" Margin="0,0,10,0">
<Image Source="Assets/Styles/Colorful.png" Stretch="UniformToFill" />
</ToggleButton>
<ToggleButton x:Name="RealisticButton" Tag="Realistic" Style="{StaticResource StyleCardButton}" Checked="StyleButton_Checked" Margin="0,0,10,0">
<Image Source="Assets/Styles/Realistic.png" Stretch="UniformToFill" />
</ToggleButton>
<ToggleButton x:Name="SoftButton" Tag="Soft" Style="{StaticResource StyleCardButton}" Checked="StyleButton_Checked" Margin="0,0,10,0">
<Image Source="Assets/Styles/Soft.png" Stretch="UniformToFill" />
</ToggleButton>
<ToggleButton x:Name="MovieButton" Tag="Movie" Style="{StaticResource StyleCardButton}" Checked="StyleButton_Checked">
<Image Source="Assets/Styles/Movie.png" Stretch="UniformToFill" />
</ToggleButton>
</UniformGrid>
<TextBlock Text="SHADOW" Foreground="{StaticResource TextPrimary}" FontFamily="Bahnschrift SemiCondensed" FontSize="18" FontWeight="SemiBold" />
<TextBlock Text="Choose whether the in-game shadow setting is enabled." Style="{StaticResource SmallLabelStyle}" Margin="0,6,0,10" />
<StackPanel Orientation="Horizontal">
<RadioButton x:Name="ShadowDisableButton" Content="Disable" GroupName="Shadow" Style="{StaticResource SegmentButtonStyle}" Width="120" Height="38" IsEnabled="False" Checked="SettingRadioButton_Checked" />
<RadioButton x:Name="ShadowEnableButton" Content="Enable" GroupName="Shadow" Style="{StaticResource SegmentButtonStyle}" Width="120" Height="38" IsEnabled="False" Checked="SettingRadioButton_Checked" />
</StackPanel>
<StackPanel x:Name="KoreanResolutionPanel" Visibility="Collapsed" Margin="0,18,0,0">
<TextBlock Text="RESOLUTION PUBG KR" Foreground="{StaticResource TextPrimary}" FontFamily="Bahnschrift SemiCondensed" FontSize="18" FontWeight="SemiBold" />
<TextBlock Text="Use the original Korean version 1080p workflow." Style="{StaticResource SmallLabelStyle}" Margin="0,6,0,10" />
<ToggleButton x:Name="KoreanFullHdButton" Content="1080p" Style="{StaticResource CompactToggleButtonStyle}" Width="120" Height="38" IsEnabled="False" />
</StackPanel>
</StackPanel>
</ScrollViewer>
<Border Grid.Column="1" Width="1" Background="#2A3A47" HorizontalAlignment="Center" />
<StackPanel Grid.Column="2" Margin="0,0,0,0">
<Border Background="{StaticResource PanelBackground}" BorderBrush="{StaticResource BorderBrush}" BorderThickness="1" CornerRadius="8" Padding="18" Margin="0,0,0,20">
<StackPanel>
<Grid>
<StackPanel Orientation="Horizontal">
<Ellipse x:Name="ConnectionDot" Width="11" Height="11" Fill="{StaticResource TextMuted}" VerticalAlignment="Center" Margin="0,0,11,0" />
<TextBlock x:Name="ConnectionTitle" Text="GAMELOOP CONNECTION" Foreground="{StaticResource TextPrimary}" FontFamily="Bahnschrift SemiCondensed" FontSize="16" FontWeight="SemiBold" VerticalAlignment="Center" />
</StackPanel>
<Button x:Name="ConnectButton" Content="CONNECT" Click="ConnectButton_Click" Style="{StaticResource OutlineButtonStyle}" HorizontalAlignment="Right" Padding="12,7" FontSize="11" />
</Grid>
<TextBlock x:Name="ConnectionDetail" Text="Connect to GameLoop to load current settings." Foreground="{StaticResource TextSecondary}" FontSize="13" Margin="22,10,0,0" TextWrapping="Wrap" />
</StackPanel>
</Border>
<Border Background="{StaticResource PanelBackground}" BorderBrush="{StaticResource BorderBrush}" BorderThickness="1" CornerRadius="8" Padding="18">
<StackPanel>
<StackPanel Orientation="Horizontal" Margin="0,0,0,13">
<Border Width="3" Height="18" Background="{StaticResource Accent}" CornerRadius="1" Margin="0,0,9,0" Effect="{StaticResource AccentGlowEffect}" />
<TextBlock Text="LIVE CONFIGURATION" Foreground="{StaticResource TextPrimary}" FontFamily="Bahnschrift SemiCondensed" FontSize="16" FontWeight="SemiBold" />
</StackPanel>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="34" /><RowDefinition Height="34" /><RowDefinition Height="34" /><RowDefinition Height="34" /><RowDefinition Height="34" /><RowDefinition Height="34" />
</Grid.RowDefinitions>
<TextBlock Grid.Row="0" Text="PUBG Version" Style="{StaticResource SmallLabelStyle}" />
<TextBlock Grid.Row="0" x:Name="SummaryVersion" Text="—" Foreground="{StaticResource Accent}" HorizontalAlignment="Right" />
<TextBlock Grid.Row="1" Text="Graphics Quality" Style="{StaticResource SmallLabelStyle}" />
<TextBlock Grid.Row="1" x:Name="SummaryQuality" Text="—" Foreground="{StaticResource Accent}" HorizontalAlignment="Right" />
<TextBlock Grid.Row="2" Text="Frame Rate" Style="{StaticResource SmallLabelStyle}" />
<TextBlock Grid.Row="2" x:Name="SummaryFps" Text="—" Foreground="{StaticResource Accent}" HorizontalAlignment="Right" />
<TextBlock Grid.Row="3" Text="Visual Style" Style="{StaticResource SmallLabelStyle}" />
<TextBlock Grid.Row="3" x:Name="SummaryStyle" Text="—" Foreground="{StaticResource Accent}" HorizontalAlignment="Right" />
<TextBlock Grid.Row="4" Text="Shadow" Style="{StaticResource SmallLabelStyle}" />
<TextBlock Grid.Row="4" x:Name="SummaryShadow" Text="—" Foreground="{StaticResource TextMuted}" HorizontalAlignment="Right" />
<TextBlock Grid.Row="5" Text="ADB" Style="{StaticResource SmallLabelStyle}" />
<TextBlock Grid.Row="5" x:Name="SummaryAdb" Text="Offline" Foreground="{StaticResource TextMuted}" HorizontalAlignment="Right" />
</Grid>
<Border Height="1" Background="#2A3A47" Margin="0,16,0,18" />
<TextBlock Text="Use the apply action after selecting the settings you want." Foreground="{StaticResource TextMuted}" FontSize="12" TextWrapping="Wrap" />
</StackPanel>
</Border>
</StackPanel>
</Grid>
<Grid Grid.Row="2" Margin="18,18,18,10">
<StackPanel Orientation="Horizontal" VerticalAlignment="Center">
<Ellipse Width="7" Height="7" Fill="{StaticResource TextMuted}" Margin="0,0,8,0" />
<TextBlock x:Name="StatusText" Text="Ready" Foreground="{StaticResource TextSecondary}" FontSize="13" />
</StackPanel>
<Button x:Name="ApplyButton" Content="✓ APPLY SETTINGS" Click="ApplyButton_Click" Style="{StaticResource PrimaryButtonStyle}" HorizontalAlignment="Right" IsEnabled="False" />
</Grid>
</Grid>
<Grid x:Name="OptimizerView" Visibility="Collapsed" Margin="34,14,34,10" ClipToBounds="True">
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<Border Grid.RowSpan="3" Background="{StaticResource OptimizerPageBackgroundBrush}" BorderBrush="#1B2B37" BorderThickness="1" CornerRadius="18" IsHitTestVisible="False" />
<Border Grid.RowSpan="3" Height="1" Background="#68C27A48" VerticalAlignment="Top" Margin="32,1,32,0" Opacity="0.6" IsHitTestVisible="False" />
<Ellipse Grid.RowSpan="3" Width="500" Height="500" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="-170,-175,0,0" Fill="{StaticResource OptimizerAccentGlowBrush}" Opacity="0.3" IsHitTestVisible="False" />
<Ellipse Grid.RowSpan="3" Width="480" Height="480" HorizontalAlignment="Right" VerticalAlignment="Bottom" Margin="0,0,-175,-175" Fill="{StaticResource OptimizerCoolGlowBrush}" Opacity="0.22" IsHitTestVisible="False" />
<Grid Grid.Row="0" Margin="18,6,18,12">
<StackPanel Orientation="Horizontal">
<Border Width="4" Height="48" Background="{StaticResource Accent}" CornerRadius="2" Margin="0,0,14,0" Effect="{StaticResource AccentGlowEffect}" />
<StackPanel VerticalAlignment="Center">
<TextBlock Text="PERFORMANCE PROFILE" Foreground="{StaticResource Accent}" FontSize="9" FontWeight="SemiBold" Margin="0,0,0,3" />
<TextBlock Text="PERFORMANCE CENTER" Foreground="{StaticResource TextPrimary}" FontFamily="Bahnschrift SemiCondensed" FontSize="29" FontWeight="SemiBold" />
<TextBlock Text="Tune the GameLoop 64-bit environment around your real hardware." Foreground="{StaticResource TextSecondary}" FontSize="13" Margin="0,3,0,0" />
</StackPanel>
</StackPanel>
<StackPanel HorizontalAlignment="Right" VerticalAlignment="Center" Orientation="Horizontal">
<Border Background="{StaticResource AccentSoft}" BorderBrush="{StaticResource Accent}" BorderThickness="1" CornerRadius="6" Padding="12,8" Margin="0,0,10,0">
<TextBlock x:Name="ArchitectureText" Text="GAMELOOP 64-BIT" Foreground="{StaticResource Accent}" FontSize="11" FontWeight="SemiBold" />
</Border>
<Button x:Name="RefreshOptimizerButton" Content="↻ REFRESH HARDWARE" Click="RefreshOptimizerButton_Click" Style="{StaticResource OutlineButtonStyle}" FontSize="11" Padding="12,8" />
</StackPanel>
</Grid>
<Border Grid.Row="1" Background="{StaticResource PanelBackground}" BorderBrush="{StaticResource BrightOutlineBrush}" BorderThickness="1" CornerRadius="8" Padding="14" Margin="18,0,18,12">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="2.1*" />
<ColumnDefinition Width="1*" />
<ColumnDefinition Width="1*" />
<ColumnDefinition Width="1*" />
<ColumnDefinition Width="1.2*" />
<ColumnDefinition Width="1.25*" />
</Grid.ColumnDefinitions>
<StackPanel Grid.Column="0">
<TextBlock Text="DETECTED HARDWARE" Foreground="{StaticResource TextMuted}" FontSize="11" FontWeight="SemiBold" />
<TextBlock x:Name="HardwareProfileText" Text="Detecting system profile..." Foreground="{StaticResource TextPrimary}" FontFamily="Bahnschrift SemiCondensed" FontSize="17" FontWeight="SemiBold" Margin="0,4,0,0" />
<TextBlock x:Name="HardwareGpuText" Text="GPU —" Foreground="{StaticResource TextSecondary}" FontSize="12" TextTrimming="CharacterEllipsis" Margin="0,3,16,0" />
</StackPanel>
<StackPanel Grid.Column="1" Margin="16,0,0,0">
<TextBlock Text="CPU" Foreground="{StaticResource TextMuted}" FontSize="11" FontWeight="SemiBold" />
<TextBlock x:Name="HardwareCpuText" Text="—" Foreground="{StaticResource TextPrimary}" FontSize="13" Margin="0,5,0,0" TextWrapping="Wrap" />
</StackPanel>
<StackPanel Grid.Column="2" Margin="16,0,0,0">
<TextBlock Text="MEMORY" Foreground="{StaticResource TextMuted}" FontSize="11" FontWeight="SemiBold" />
<TextBlock x:Name="HardwareMemoryText" Text="—" Foreground="{StaticResource TextPrimary}" FontSize="13" Margin="0,5,0,0" />
</StackPanel>
<StackPanel Grid.Column="3" Margin="16,0,0,0">
<TextBlock Text="DISPLAY" Foreground="{StaticResource TextMuted}" FontSize="11" FontWeight="SemiBold" />
<TextBlock x:Name="HardwareDisplayText" Text="—" Foreground="{StaticResource TextPrimary}" FontSize="13" Margin="0,5,0,0" />
</StackPanel>
<StackPanel Grid.Column="4" Margin="16,0,0,0">
<TextBlock Text="POWER" Foreground="{StaticResource TextMuted}" FontSize="11" FontWeight="SemiBold" />
<TextBlock x:Name="HardwarePowerText" Text="—" Foreground="{StaticResource TextPrimary}" FontSize="13" Margin="0,5,0,0" TextWrapping="Wrap" />
</StackPanel>
<StackPanel Grid.Column="5" Margin="16,0,0,0">
<TextBlock Text="VIRTUALIZATION" Foreground="{StaticResource TextMuted}" FontSize="11" FontWeight="SemiBold" />
<TextBlock x:Name="HardwareVirtualizationText" Text="—" Foreground="{StaticResource TextPrimary}" FontSize="13" Margin="0,5,0,0" TextWrapping="Wrap" />
</StackPanel>
</Grid>
</Border>
<ScrollViewer Grid.Row="2" VerticalScrollBarVisibility="Auto" HorizontalScrollBarVisibility="Disabled" Padding="18,0,20,2">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="1.7*" />
<ColumnDefinition Width="24" />
<ColumnDefinition Width="1*" />
</Grid.ColumnDefinitions>
<StackPanel Grid.Column="0">
<Border Background="{StaticResource PanelAltBackground}" BorderBrush="{StaticResource Accent}" BorderThickness="1" CornerRadius="8" Padding="18" Margin="0,0,0,10">
<Grid>
<Grid.ColumnDefinitions><ColumnDefinition Width="*" /><ColumnDefinition Width="190" /></Grid.ColumnDefinitions>
<StackPanel Grid.Column="0">
<TextBlock Text="SMART OPTIMIZE" Foreground="{StaticResource Accent}" FontFamily="Bahnschrift SemiCondensed" FontSize="18" FontWeight="SemiBold" />
<TextBlock Text="Build a tuned GameLoop profile from your CPU, memory, GPU, display, and power state." Foreground="{StaticResource TextPrimary}" FontSize="14" TextWrapping="Wrap" Margin="0,7,20,0" />
<TextBlock x:Name="SmartPlanText" Text="Recommended plan is ready." Foreground="{StaticResource TextSecondary}" FontSize="12" TextWrapping="Wrap" Margin="0,9,20,0" />
</StackPanel>
<Button x:Name="SmartSettingsButton" Grid.Column="1" AutomationProperties.Name="SMART OPTIMIZE" Click="SmartSettingsButton_Click" Style="{StaticResource PrimaryButtonStyle}" VerticalAlignment="Center" Padding="14,11">
<StackPanel Orientation="Horizontal"><TextBlock Text="" FontFamily="Segoe MDL2 Assets" FontSize="15" Margin="0,0,8,0" /><TextBlock Text="SMART OPTIMIZE" /></StackPanel>
</Button>
</Grid>
</Border>
<TextBlock Text="TOOLS" Foreground="{StaticResource TextPrimary}" FontFamily="Bahnschrift SemiCondensed" FontSize="17" FontWeight="SemiBold" Margin="0,0,0,8" />
<Grid>
<Grid.ColumnDefinitions><ColumnDefinition Width="*" /><ColumnDefinition Width="14" /><ColumnDefinition Width="*" /></Grid.ColumnDefinitions>
<Button x:Name="TempCleanerButton" Grid.Column="0" AutomationProperties.Name="CLEAN CACHE" Click="TempCleanerButton_Click" Style="{StaticResource ToolButtonStyle}">
<StackPanel Orientation="Horizontal"><TextBlock Text="" FontFamily="Segoe MDL2 Assets" FontSize="15" Margin="0,0,9,0" /><TextBlock Text="CLEAN CACHE" /></StackPanel>
</Button>
<Button x:Name="GameLoopOptimizerButton" Grid.Column="2" AutomationProperties.Name="WINDOWS & GPU BOOST" Click="GameLoopOptimizerButton_Click" Style="{StaticResource ToolButtonStyle}">
<StackPanel Orientation="Horizontal"><TextBlock Text="" FontFamily="Segoe MDL2 Assets" FontSize="15" Margin="0,0,9,0" /><TextBlock Text="WINDOWS & GPU BOOST" /></StackPanel>
</Button>
</Grid>
<Button x:Name="AllRecommendedButton" Content="↑ APPLY ALL RECOMMENDED" Click="AllRecommendedButton_Click" Style="{StaticResource PrimaryButtonStyle}" HorizontalAlignment="Left" Padding="20,11" Margin="0,2,0,12" />
<Border Background="{StaticResource PanelBackground}" BorderBrush="{StaticResource BrightOutlineBrush}" BorderThickness="1" CornerRadius="8" Padding="14" Margin="0,0,0,10">
<StackPanel>
<TextBlock Text="PERFORMANCE SESSION" Foreground="{StaticResource TextPrimary}" FontFamily="Bahnschrift SemiCondensed" FontSize="17" FontWeight="SemiBold" />
<TextBlock Text="Use high-performance power mode and tune running GameLoop processes while you play." Foreground="{StaticResource TextSecondary}" FontSize="13" TextWrapping="Wrap" Margin="0,6,0,10" />
<StackPanel Orientation="Horizontal">
<Button x:Name="PerformanceSessionButton" Content="START SESSION" Click="PerformanceSessionButton_Click" Style="{StaticResource OutlineButtonStyle}" Padding="12,8" Margin="0,0,10,0" />
<Button x:Name="RestoreSessionButton" Content="RESTORE POWER MODE" Click="RestoreSessionButton_Click" Style="{StaticResource OutlineButtonStyle}" Padding="12,8" />
</StackPanel>
</StackPanel>
</Border>
<Button x:Name="ForceCloseButton" AutomationProperties.Name="FORCE CLOSE GAMELOOP" Click="ForceCloseButton_Click" Style="{StaticResource ToolButtonStyle}" Foreground="{StaticResource Danger}">
<StackPanel Orientation="Horizontal"><TextBlock Text="" FontFamily="Segoe MDL2 Assets" FontSize="15" Margin="0,0,9,0" /><TextBlock Text="FORCE CLOSE GAMELOOP" /></StackPanel>
</Button>
</StackPanel>
<Border Grid.Column="1" Width="1" Background="#2A3A47" HorizontalAlignment="Center" />
<StackPanel Grid.Column="2">
<Border Background="{StaticResource PanelBackground}" BorderBrush="{StaticResource BrightOutlineBrush}" BorderThickness="1" CornerRadius="8" Padding="14" Margin="0,0,0,10">
<StackPanel>
<TextBlock Text="RECOMMENDED PLAN" Foreground="{StaticResource TextPrimary}" FontFamily="Bahnschrift SemiCondensed" FontSize="17" FontWeight="SemiBold" />
<TextBlock x:Name="PlanTierText" Text="—" Foreground="{StaticResource Accent}" FontSize="13" FontWeight="SemiBold" Margin="0,6,0,10" />
<Grid>
<Grid.RowDefinitions><RowDefinition Height="30" /><RowDefinition Height="30" /><RowDefinition Height="30" /><RowDefinition Height="30" /><RowDefinition Height="30" /></Grid.RowDefinitions>
<TextBlock Grid.Row="0" Text="CPU allocation" Style="{StaticResource SmallLabelStyle}" /><TextBlock Grid.Row="0" x:Name="PlanCpuText" Text="—" Foreground="{StaticResource TextPrimary}" HorizontalAlignment="Right" />
<TextBlock Grid.Row="1" Text="Memory" Style="{StaticResource SmallLabelStyle}" /><TextBlock Grid.Row="1" x:Name="PlanMemoryText" Text="—" Foreground="{StaticResource TextPrimary}" HorizontalAlignment="Right" />
<TextBlock Grid.Row="2" Text="Render scale" Style="{StaticResource SmallLabelStyle}" /><TextBlock Grid.Row="2" x:Name="PlanRenderText" Text="—" Foreground="{StaticResource TextPrimary}" HorizontalAlignment="Right" />
<TextBlock Grid.Row="3" Text="Frame rate mode" Style="{StaticResource SmallLabelStyle}" /><TextBlock Grid.Row="3" x:Name="PlanFpsText" Text="—" Foreground="{StaticResource Accent}" HorizontalAlignment="Right" />
<TextBlock Grid.Row="4" Text="GPU route" Style="{StaticResource SmallLabelStyle}" /><TextBlock Grid.Row="4" x:Name="PlanGpuText" Text="—" Foreground="{StaticResource TextPrimary}" HorizontalAlignment="Right" TextTrimming="CharacterEllipsis" />
</Grid>
</StackPanel>
</Border>
<Border Background="{StaticResource PanelBackground}" BorderBrush="{StaticResource BrightOutlineBrush}" BorderThickness="1" CornerRadius="8" Padding="14">
<StackPanel>
<TextBlock Text="ACTIVITY" Foreground="{StaticResource TextPrimary}" FontFamily="Bahnschrift SemiCondensed" FontSize="17" FontWeight="SemiBold" />
<TextBlock Text="Actions report their result here. Restart GameLoop when a setting requests it." Foreground="{StaticResource TextSecondary}" FontSize="13" TextWrapping="Wrap" Margin="0,6,0,12" />
<TextBlock Text="STATUS" Foreground="{StaticResource TextMuted}" FontSize="11" FontWeight="SemiBold" />
<TextBlock x:Name="OptimizerStatusText" Text="Ready" Foreground="{StaticResource TextSecondary}" FontSize="14" TextWrapping="Wrap" Margin="0,6,0,0" />
</StackPanel>
</Border>
</StackPanel>
</Grid>
</ScrollViewer>
</Grid>
<Grid x:Name="NetworkView" Visibility="Collapsed" Margin="48,26,48,24">
<Grid.RowDefinitions><RowDefinition Height="Auto" /><RowDefinition Height="*" /></Grid.RowDefinitions>
<StackPanel Grid.Row="0" Margin="0,0,0,22">
<TextBlock Text="NETWORK & VIEW" Foreground="{StaticResource TextPrimary}" FontFamily="Bahnschrift SemiCondensed" FontSize="31" FontWeight="SemiBold" />
<TextBlock Text="Tune your connection and choose a proven iPad-style GameLoop canvas." Foreground="{StaticResource TextSecondary}" FontSize="14" Margin="0,8,0,0" />
</StackPanel>
<Grid Grid.Row="1">
<Grid.ColumnDefinitions><ColumnDefinition Width="1*" /><ColumnDefinition Width="26" /><ColumnDefinition Width="1.08*" /></Grid.ColumnDefinitions>
<Border Grid.Column="0" Background="{StaticResource PanelBackground}" BorderBrush="{StaticResource BorderBrush}" BorderThickness="1" CornerRadius="5" Padding="24" MinHeight="286" VerticalAlignment="Top">
<Grid>
<Grid.RowDefinitions><RowDefinition Height="Auto" /><RowDefinition Height="Auto" /><RowDefinition Height="Auto" /><RowDefinition Height="*" /><RowDefinition Height="Auto" /></Grid.RowDefinitions>
<TextBlock Grid.Row="0" Text="DNS CHANGER" Foreground="{StaticResource TextPrimary}" FontFamily="Bahnschrift SemiCondensed" FontSize="20" FontWeight="SemiBold" />
<TextBlock Grid.Row="1" Text="Select a provider, check latency, then apply it to active adapters." Foreground="{StaticResource TextSecondary}" FontSize="13" TextWrapping="Wrap" Margin="0,8,0,20" />
<ComboBox Grid.Row="2" x:Name="DnsComboBox" Style="{StaticResource InputComboBoxStyle}" SelectionChanged="DnsComboBox_SelectionChanged">
<ComboBox.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding}" Foreground="{StaticResource TextPrimary}" FontSize="14" />
</DataTemplate>
</ComboBox.ItemTemplate>
</ComboBox>
<TextBlock Grid.Row="3" x:Name="DnsStatusText" Text="Choose a provider to test response time." Foreground="{StaticResource TextMuted}" FontSize="13" TextWrapping="Wrap" Margin="0,14,0,0" VerticalAlignment="Top" />
<Button Grid.Row="4" x:Name="ChangeDnsButton" Content="CHANGE DNS" Click="ChangeDnsButton_Click" Style="{StaticResource PrimaryButtonStyle}" HorizontalAlignment="Right" Margin="0,22,0,0" />
</Grid>
</Border>
<Border Grid.Column="1" Width="1" Background="#2A3A47" HorizontalAlignment="Center" />
<Border Grid.Column="2" Background="{StaticResource PanelBackground}" BorderBrush="{StaticResource BorderBrush}" BorderThickness="1" CornerRadius="5" Padding="24" MinHeight="360" VerticalAlignment="Top">
<Grid>
<Grid.RowDefinitions><RowDefinition Height="Auto" /><RowDefinition Height="Auto" /><RowDefinition Height="Auto" /><RowDefinition Height="*" /><RowDefinition Height="Auto" /></Grid.RowDefinitions>
<TextBlock Grid.Row="0" Text="IPAD VIEW" Foreground="{StaticResource TextPrimary}" FontFamily="Bahnschrift SemiCondensed" FontSize="20" FontWeight="SemiBold" />
<TextBlock Grid.Row="1" Text="Apply a tested iPad-style aspect ratio and matching GameLoop key layout. Close GameLoop first, then restart it after applying." Foreground="{StaticResource TextSecondary}" FontSize="13" TextWrapping="Wrap" Margin="0,8,0,20" />
<ComboBox Grid.Row="2" x:Name="IpadComboBox" Style="{StaticResource InputComboBoxStyle}" SelectionChanged="IpadComboBox_SelectionChanged" ToolTip="Select an iPad display profile">
<ComboBox.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding}" Foreground="{StaticResource TextPrimary}" FontSize="14" />
</DataTemplate>
</ComboBox.ItemTemplate>
</ComboBox>
<Border Grid.Row="3" Background="{StaticResource PanelAltBackground}" BorderBrush="{StaticResource BorderBrush}" BorderThickness="1" CornerRadius="4" Padding="14" Margin="0,16,0,0" VerticalAlignment="Top">
<StackPanel>
<TextBlock Text="PRESET PROFILE" Foreground="{StaticResource TextMuted}" FontSize="11" FontWeight="SemiBold" />
<TextBlock x:Name="IpadPresetDetailsText" Text="Choose a tested iPad display profile." Foreground="{StaticResource TextPrimary}" FontSize="13" TextWrapping="Wrap" Margin="0,7,0,0" />
<TextBlock x:Name="IpadApplyStatusText" Text="No profile selected." Foreground="{StaticResource TextMuted}" FontSize="12" TextWrapping="Wrap" Margin="0,8,0,0" />
</StackPanel>
</Border>
<StackPanel Grid.Row="4" Orientation="Horizontal" HorizontalAlignment="Right" Margin="0,22,0,0">
<Button x:Name="ResetIpadButton" Content="RESET" Click="ResetIpadButton_Click" Style="{StaticResource OutlineButtonStyle}" Margin="0,0,10,0" />
<Button x:Name="ChangeIpadButton" Content="APPLY IPAD VIEW" Click="ChangeIpadButton_Click" Style="{StaticResource PrimaryButtonStyle}" IsEnabled="False" />
</StackPanel>
</Grid>
</Border>
</Grid>
</Grid>
<Grid x:Name="ShortcutsView" Visibility="Collapsed" Margin="48,38,48,36">
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<Grid Grid.Row="0" Margin="0,0,0,24">
<StackPanel>
<TextBlock Text="SHORTCUTS" Foreground="{StaticResource TextPrimary}" FontFamily="Bahnschrift SemiCondensed" FontSize="31" FontWeight="SemiBold" />
<TextBlock Text="Create a clean desktop launcher for any installed PUBG Mobile version." Foreground="{StaticResource TextSecondary}" FontSize="14" Margin="0,8,0,0" />
</StackPanel>
<Border HorizontalAlignment="Right" VerticalAlignment="Top" Background="{StaticResource AccentSoft}" BorderBrush="#6D4B36" BorderThickness="1" CornerRadius="3" Padding="12,8">
<StackPanel Orientation="Horizontal">
<TextBlock Text="" FontFamily="Segoe MDL2 Assets" Foreground="{StaticResource Accent}" FontSize="16" VerticalAlignment="Center" Margin="0,0,8,0" />
<TextBlock Text="DESKTOP LAUNCHER" Foreground="{StaticResource TextPrimary}" FontSize="11" FontWeight="SemiBold" VerticalAlignment="Center" />
</StackPanel>
</Border>
</Grid>
<Grid Grid.Row="1">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="1.15*" />
<ColumnDefinition Width="24" />
<ColumnDefinition Width="0.85*" />
</Grid.ColumnDefinitions>
<Border Grid.Column="0" Background="{StaticResource PanelBackground}" BorderBrush="{StaticResource BorderBrush}" BorderThickness="1" CornerRadius="5" Padding="24" MinHeight="410" VerticalAlignment="Top">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="*" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<StackPanel Grid.Row="0" Orientation="Horizontal">
<Border Width="38" Height="38" Background="{StaticResource AccentSoft}" BorderBrush="#6D4B36" BorderThickness="1" CornerRadius="3" VerticalAlignment="Center">
<TextBlock Text="" FontFamily="Segoe MDL2 Assets" Foreground="{StaticResource Accent}" FontSize="19" HorizontalAlignment="Center" VerticalAlignment="Center" />
</Border>
<StackPanel Margin="12,0,0,0" VerticalAlignment="Center">
<TextBlock Text="CREATE A SHORTCUT" Foreground="{StaticResource TextPrimary}" FontFamily="Bahnschrift SemiCondensed" FontSize="20" FontWeight="SemiBold" />
<TextBlock Text="One-click launch from your desktop" Foreground="{StaticResource TextMuted}" FontSize="12" Margin="0,3,0,0" />
</StackPanel>
</StackPanel>
<TextBlock Grid.Row="1" Text="Choose the PUBG Mobile version to open through GameLoop AppMarket." Foreground="{StaticResource TextSecondary}" FontSize="13" TextWrapping="Wrap" Margin="0,22,0,18" />
<StackPanel Grid.Row="2">
<TextBlock Text="GAME VERSION" Foreground="{StaticResource TextSecondary}" FontSize="11" FontWeight="SemiBold" Margin="0,0,0,8" />
<ComboBox x:Name="ShortcutComboBox" Style="{StaticResource InputComboBoxStyle}" SelectionChanged="ShortcutComboBox_SelectionChanged" />
</StackPanel>
<Border Grid.Row="3" Background="{StaticResource PanelAltBackground}" BorderBrush="{StaticResource BorderBrush}" BorderThickness="1" CornerRadius="4" Padding="14" Margin="0,18,0,18" VerticalAlignment="Top">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="54" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<Border Grid.Column="0" Width="44" Height="44" Background="#0D151D" BorderBrush="{StaticResource BorderBrush}" BorderThickness="1" CornerRadius="3" HorizontalAlignment="Left" VerticalAlignment="Top">
<Image x:Name="ShortcutIcon" Width="30" Height="30" Stretch="Uniform" />
</Border>
<StackPanel Grid.Column="1" Margin="12,0,0,0">
<TextBlock Text="SELECTED PROFILE" Foreground="{StaticResource TextMuted}" FontSize="10" FontWeight="SemiBold" />
<TextBlock x:Name="ShortcutDisplayNameText" Text="Choose a PUBG Mobile version" Foreground="{StaticResource TextPrimary}" FontSize="14" FontWeight="SemiBold" TextWrapping="Wrap" Margin="0,5,0,0" />
<TextBlock x:Name="ShortcutPackageText" Text="No package selected" Foreground="{StaticResource TextSecondary}" FontSize="12" TextTrimming="CharacterEllipsis" Margin="0,4,0,0" />
<TextBlock x:Name="ShortcutDestinationText" Text="The shortcut will be placed on your desktop." Foreground="{StaticResource TextMuted}" FontSize="11" TextWrapping="Wrap" Margin="0,7,0,0" />
</StackPanel>
</Grid>
</Border>
<Button x:Name="CreateShortcutButton" Grid.Row="4" Content="CREATE DESKTOP SHORTCUT" Click="CreateShortcutButton_Click" Style="{StaticResource PrimaryButtonStyle}" HorizontalAlignment="Right" IsEnabled="False" />
</Grid>
</Border>
<Border Grid.Column="2" Background="{StaticResource PanelAltBackground}" BorderBrush="{StaticResource BorderBrush}" BorderThickness="1" CornerRadius="5" Padding="24" MinHeight="410" VerticalAlignment="Top">
<StackPanel>
<TextBlock Text="HOW IT WORKS" Foreground="{StaticResource TextPrimary}" FontFamily="Bahnschrift SemiCondensed" FontSize="20" FontWeight="SemiBold" />
<TextBlock Text="The shortcut uses GameLoop's own launcher, so the selected version opens with its original package." Foreground="{StaticResource TextSecondary}" FontSize="13" TextWrapping="Wrap" Margin="0,8,0,24" />
<Grid Margin="0,0,0,18">
<Grid.ColumnDefinitions><ColumnDefinition Width="30" /><ColumnDefinition Width="*" /></Grid.ColumnDefinitions>
<Border Grid.Column="0" Width="24" Height="24" Background="{StaticResource AccentSoft}" BorderBrush="#6D4B36" BorderThickness="1" CornerRadius="12">
<TextBlock Text="1" Foreground="{StaticResource Accent}" FontSize="12" FontWeight="SemiBold" HorizontalAlignment="Center" VerticalAlignment="Center" />
</Border>
<StackPanel Grid.Column="1" Margin="10,0,0,0">
<TextBlock Text="Select a version" Foreground="{StaticResource TextPrimary}" FontSize="13" FontWeight="SemiBold" />
<TextBlock Text="Choose one of the detected PUBG Mobile packages." Foreground="{StaticResource TextSecondary}" FontSize="12" TextWrapping="Wrap" Margin="0,4,0,0" />
</StackPanel>
</Grid>
<Grid Margin="0,0,0,18">
<Grid.ColumnDefinitions><ColumnDefinition Width="30" /><ColumnDefinition Width="*" /></Grid.ColumnDefinitions>
<Border Grid.Column="0" Width="24" Height="24" Background="{StaticResource AccentSoft}" BorderBrush="#6D4B36" BorderThickness="1" CornerRadius="12">
<TextBlock Text="2" Foreground="{StaticResource Accent}" FontSize="12" FontWeight="SemiBold" HorizontalAlignment="Center" VerticalAlignment="Center" />
</Border>
<StackPanel Grid.Column="1" Margin="10,0,0,0">
<TextBlock Text="Create the launcher" Foreground="{StaticResource TextPrimary}" FontSize="13" FontWeight="SemiBold" />
<TextBlock Text="Nexora places a named shortcut on the Windows desktop." Foreground="{StaticResource TextSecondary}" FontSize="12" TextWrapping="Wrap" Margin="0,4,0,0" />
</StackPanel>
</Grid>
<Grid>
<Grid.ColumnDefinitions><ColumnDefinition Width="30" /><ColumnDefinition Width="*" /></Grid.ColumnDefinitions>
<Border Grid.Column="0" Width="24" Height="24" Background="{StaticResource AccentSoft}" BorderBrush="#6D4B36" BorderThickness="1" CornerRadius="12">
<TextBlock Text="3" Foreground="{StaticResource Accent}" FontSize="12" FontWeight="SemiBold" HorizontalAlignment="Center" VerticalAlignment="Center" />
</Border>
<StackPanel Grid.Column="1" Margin="10,0,0,0">
<TextBlock Text="Launch when you need it" Foreground="{StaticResource TextPrimary}" FontSize="13" FontWeight="SemiBold" />
<TextBlock Text="Open PUBG Mobile directly without navigating through the emulator menu." Foreground="{StaticResource TextSecondary}" FontSize="12" TextWrapping="Wrap" Margin="0,4,0,0" />
</StackPanel>
</Grid>
<Border Background="{StaticResource PanelBackground}" BorderBrush="{StaticResource BorderBrush}" BorderThickness="1" CornerRadius="4" Padding="12" Margin="0,28,0,0">
<StackPanel Orientation="Horizontal">
<Ellipse Width="8" Height="8" Fill="{StaticResource Success}" VerticalAlignment="Center" Margin="0,0,9,0" />
<TextBlock Text="No game settings are changed by this action." Foreground="{StaticResource TextSecondary}" FontSize="12" TextWrapping="Wrap" />
</StackPanel>
</Border>
</StackPanel>
</Border>
</Grid>
</Grid>
<Grid x:Name="AboutView" Visibility="Collapsed" Margin="48,38,48,36">
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<Grid Grid.Row="0" Margin="0,0,0,24">
<StackPanel>
<TextBlock Text="ABOUT NEXORA" Foreground="{StaticResource TextPrimary}" FontFamily="Bahnschrift SemiCondensed" FontSize="31" FontWeight="SemiBold" />
<TextBlock Text="A focused home for your GameLoop workflow." Foreground="{StaticResource TextSecondary}" FontSize="14" Margin="0,8,0,0" />
</StackPanel>
<Border HorizontalAlignment="Right" VerticalAlignment="Top" Background="{StaticResource AccentSoft}" BorderBrush="#6D4B36" BorderThickness="1" CornerRadius="3" Padding="12,8">
<StackPanel Orientation="Horizontal">
<Ellipse Width="8" Height="8" Fill="{StaticResource Success}" VerticalAlignment="Center" Margin="0,0,9,0" />
<TextBlock Text="VERSION 1.0.9" Foreground="{StaticResource TextPrimary}" FontSize="11" FontWeight="SemiBold" VerticalAlignment="Center" />
</StackPanel>
</Border>
</Grid>
<Grid Grid.Row="1">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="1.15*" />
<ColumnDefinition Width="24" />
<ColumnDefinition Width="0.85*" />
</Grid.ColumnDefinitions>
<StackPanel Grid.Column="0">
<Border Background="{StaticResource PanelBackground}" BorderBrush="{StaticResource BorderBrush}" BorderThickness="1" CornerRadius="5" Padding="26" VerticalAlignment="Top" MinHeight="438">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="*" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<StackPanel Grid.Row="0" Orientation="Horizontal">
<Border Width="58" Height="58" Background="#0D151D" BorderBrush="{StaticResource Accent}" BorderThickness="1" CornerRadius="4">
<Image Source="Assets/Icons/nexora.ico" Width="40" Height="40" Stretch="Uniform" />
</Border>
<StackPanel Margin="16,0,0,0" VerticalAlignment="Center">
<TextBlock Text="NEXORA" Foreground="{StaticResource TextPrimary}" FontFamily="Bahnschrift SemiCondensed" FontSize="26" FontWeight="SemiBold" />
<TextBlock Text="PUBG MOBILE TOOL" Foreground="{StaticResource Accent}" FontSize="10" FontWeight="SemiBold" Margin="0,2,0,0" />
</StackPanel>
</StackPanel>
<TextBlock Grid.Row="1" Text="A clearer home for the same GameLoop tools." Foreground="{StaticResource TextPrimary}" FontFamily="Bahnschrift SemiCondensed" FontSize="22" FontWeight="SemiBold" TextWrapping="Wrap" Margin="0,28,0,0" />
<TextBlock Grid.Row="2" Text="Nexora keeps graphics, optimization, network, iPad view, and desktop shortcuts together in one focused Windows application. Select what you need, see what will change, and apply it with confidence." Foreground="{StaticResource TextSecondary}" FontSize="13" TextWrapping="Wrap" Margin="0,10,0,22" />
<Grid Grid.Row="3">
<Grid.RowDefinitions><RowDefinition Height="Auto" /><RowDefinition Height="Auto" /></Grid.RowDefinitions>
<Grid.ColumnDefinitions><ColumnDefinition Width="*" /><ColumnDefinition Width="*" /></Grid.ColumnDefinitions>
<Border Grid.Row="0" Grid.Column="0" Background="{StaticResource PanelAltBackground}" BorderBrush="{StaticResource BorderBrush}" BorderThickness="1" CornerRadius="3" Padding="12" Margin="0,0,8,8">
<StackPanel>
<TextBlock Text="GRAPHICS" Foreground="{StaticResource Accent}" FontSize="11" FontWeight="SemiBold" />
<TextBlock Text="Quality, frame rate, style" Foreground="{StaticResource TextSecondary}" FontSize="12" Margin="0,5,0,0" TextWrapping="Wrap" />
</StackPanel>
</Border>
<Border Grid.Row="0" Grid.Column="1" Background="{StaticResource PanelAltBackground}" BorderBrush="{StaticResource BorderBrush}" BorderThickness="1" CornerRadius="3" Padding="12" Margin="0,0,0,8">
<StackPanel>
<TextBlock Text="OPTIMIZER" Foreground="{StaticResource Accent}" FontSize="11" FontWeight="SemiBold" />
<TextBlock Text="Hardware-aware tuning" Foreground="{StaticResource TextSecondary}" FontSize="12" Margin="0,5,0,0" TextWrapping="Wrap" />
</StackPanel>
</Border>
<Border Grid.Row="1" Grid.Column="0" Background="{StaticResource PanelAltBackground}" BorderBrush="{StaticResource BorderBrush}" BorderThickness="1" CornerRadius="3" Padding="12" Margin="0,0,8,0">
<StackPanel>
<TextBlock Text="NETWORK & VIEW" Foreground="{StaticResource Accent}" FontSize="11" FontWeight="SemiBold" />
<TextBlock Text="DNS and iPad profiles" Foreground="{StaticResource TextSecondary}" FontSize="12" Margin="0,5,0,0" TextWrapping="Wrap" />
</StackPanel>
</Border>
<Border Grid.Row="1" Grid.Column="1" Background="{StaticResource PanelAltBackground}" BorderBrush="{StaticResource BorderBrush}" BorderThickness="1" CornerRadius="3" Padding="12">
<StackPanel>
<TextBlock Text="SHORTCUTS" Foreground="{StaticResource Accent}" FontSize="11" FontWeight="SemiBold" />
<TextBlock Text="Direct desktop launchers" Foreground="{StaticResource TextSecondary}" FontSize="12" Margin="0,5,0,0" TextWrapping="Wrap" />
</StackPanel>
</Border>
</Grid>
<Border Grid.Row="4" Background="{StaticResource AccentSoft}" BorderBrush="#6D4B36" BorderThickness="1" CornerRadius="3" Padding="12" Margin="0,22,0,0">
<TextBlock Text="Nexora gives you control without adding clutter to your GameLoop setup." Foreground="{StaticResource TextSecondary}" FontSize="12" TextWrapping="Wrap" />
</Border>
</Grid>
</Border>
<Border Background="#10231F" BorderBrush="#3D705E" BorderThickness="1" CornerRadius="5" Padding="16" Margin="0,14,0,0">
<StackPanel>
<StackPanel Orientation="Horizontal">
<Ellipse Width="8" Height="8" Fill="{StaticResource Success}" VerticalAlignment="Center" Margin="0,0,9,0" />
<TextBlock Text="SAFE BY DESIGN" Foreground="{StaticResource TextPrimary}" FontFamily="Bahnschrift SemiCondensed" FontSize="17" FontWeight="SemiBold" />
</StackPanel>
<TextBlock Text="Nexora is a local GameLoop utility, not a cheat. It does not inject code into PUBG Mobile, read or write game memory, automate gameplay, or modify the PUBG executable." Foreground="{StaticResource TextSecondary}" FontSize="12" TextWrapping="Wrap" Margin="0,10,0,0" />
<TextBlock Text="It only applies the Windows, GameLoop, and selected profile settings you choose. Use official game and emulator installations; Nexora is independent and is not affiliated with or endorsed by PUBG Mobile or Tencent." Foreground="{StaticResource TextMuted}" FontSize="11" TextWrapping="Wrap" Margin="0,8,0,0" />
</StackPanel>
</Border>
</StackPanel>
<StackPanel Grid.Column="2">
<Border Background="{StaticResource PanelAltBackground}" BorderBrush="{StaticResource BorderBrush}" BorderThickness="1" CornerRadius="5" Padding="22" MinHeight="260">
<StackPanel>
<TextBlock Text="DESIGNED AROUND YOUR WORKFLOW" Foreground="{StaticResource TextPrimary}" FontFamily="Bahnschrift SemiCondensed" FontSize="20" FontWeight="SemiBold" TextWrapping="Wrap" />
<TextBlock Text="Every page keeps the original tool purpose clear while making the next action easier to understand." Foreground="{StaticResource TextSecondary}" FontSize="13" TextWrapping="Wrap" Margin="0,9,0,24" />
<Grid Margin="0,0,0,17">
<Grid.ColumnDefinitions><ColumnDefinition Width="9" /><ColumnDefinition Width="*" /></Grid.ColumnDefinitions>
<Ellipse Grid.Column="0" Width="8" Height="8" Fill="{StaticResource Accent}" VerticalAlignment="Top" Margin="0,4,0,0" />
<StackPanel Grid.Column="1" Margin="12,0,0,0">
<TextBlock Text="Clear before apply" Foreground="{StaticResource TextPrimary}" FontSize="13" FontWeight="SemiBold" />
<TextBlock Text="See the selected profile and current state before changing anything." Foreground="{StaticResource TextSecondary}" FontSize="12" TextWrapping="Wrap" Margin="0,4,0,0" />
</StackPanel>
</Grid>
<Grid Margin="0,0,0,17">
<Grid.ColumnDefinitions><ColumnDefinition Width="9" /><ColumnDefinition Width="*" /></Grid.ColumnDefinitions>
<Ellipse Grid.Column="0" Width="8" Height="8" Fill="{StaticResource Accent}" VerticalAlignment="Top" Margin="0,4,0,0" />
<StackPanel Grid.Column="1" Margin="12,0,0,0">
<TextBlock Text="Built for different PCs" Foreground="{StaticResource TextPrimary}" FontSize="13" FontWeight="SemiBold" />
<TextBlock Text="Optimizer profiles adapt to desktops, laptops, Intel, AMD, and NVIDIA hardware." Foreground="{StaticResource TextSecondary}" FontSize="12" TextWrapping="Wrap" Margin="0,4,0,0" />
</StackPanel>
</Grid>
<Grid>
<Grid.ColumnDefinitions><ColumnDefinition Width="9" /><ColumnDefinition Width="*" /></Grid.ColumnDefinitions>
<Ellipse Grid.Column="0" Width="8" Height="8" Fill="{StaticResource Accent}" VerticalAlignment="Top" Margin="0,4,0,0" />
<StackPanel Grid.Column="1" Margin="12,0,0,0">
<TextBlock Text="One consistent visual language" Foreground="{StaticResource TextPrimary}" FontSize="13" FontWeight="SemiBold" />
<TextBlock Text="Focused spacing, readable labels, and a calm dark interface across every page." Foreground="{StaticResource TextSecondary}" FontSize="12" TextWrapping="Wrap" Margin="0,4,0,0" />
</StackPanel>
</Grid>
</StackPanel>
</Border>
<Border Background="{StaticResource PanelBackground}" BorderBrush="{StaticResource BorderBrush}" BorderThickness="1" CornerRadius="5" Padding="22" Margin="0,18,0,0">
<StackPanel>
<TextBlock Text="DESIGNED FOR" Foreground="{StaticResource TextPrimary}" FontFamily="Bahnschrift SemiCondensed" FontSize="18" FontWeight="SemiBold" />
<Grid Margin="0,18,0,0">
<Grid.RowDefinitions><RowDefinition Height="30" /><RowDefinition Height="30" /><RowDefinition Height="30" /></Grid.RowDefinitions>
<TextBlock Grid.Row="0" Text="Windows" Style="{StaticResource SmallLabelStyle}" />
<TextBlock Grid.Row="0" Text="10 / 11" Foreground="{StaticResource Accent}" HorizontalAlignment="Right" />
<TextBlock Grid.Row="1" Text="GameLoop" Style="{StaticResource SmallLabelStyle}" />
<TextBlock Grid.Row="1" Text="64-bit" Foreground="{StaticResource Accent}" HorizontalAlignment="Right" />
<TextBlock Grid.Row="2" Text="Hardware" Style="{StaticResource SmallLabelStyle}" />
<TextBlock Grid.Row="2" Text="Intel • AMD • NVIDIA" Foreground="{StaticResource Accent}" HorizontalAlignment="Right" />
</Grid>
</StackPanel>
</Border>
</StackPanel>
</Grid>
</Grid>
</Grid>
</Grid>
</Border>
</Window>