Skip to content

Commit 067e5e7

Browse files
authored
update v1.1
1 parent d00d898 commit 067e5e7

File tree

1 file changed

+33
-27
lines changed

1 file changed

+33
-27
lines changed

src/MainWindow.xaml

Lines changed: 33 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,58 +1,64 @@
1-
<fluentui:FabricWindow x:Class="GetFbAuth_LdPlayerGUI.MainWindow"
1+
<fluentui:FabricWindow x:Class="GetFbAuth_LdPlayerGUI.MainWindow"
22
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
33
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
44
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
55
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
66
xmlns:local="clr-namespace:GetFbAuth_LdPlayerGUI"
77
xmlns:fluentui="clr-namespace:FluentUI;assembly=FluentUI"
88
mc:Ignorable="d"
9-
Title="GetFbAuth_LdPlayerGUI v1.0.0 | Freeware | tienichmmo.net"
10-
Style="{DynamicResource CustomWindowStyle}"
9+
Title="GetFbAuth_GUI v1.0.1 | Freeware | tienichmmo.net"
1110
WindowStartupLocation="CenterScreen" Width="839" Height="500" Activated="FabricWindow_Activated">
1211
<Window.Resources>
1312
<Style TargetType="ScrollViewer" BasedOn="{StaticResource {x:Type ScrollViewer}}">
1413
<Setter Property="VerticalScrollBarVisibility" Value="Auto"/>
1514
</Style>
1615
</Window.Resources>
1716
<TabControl TabStripPlacement="Left">
18-
<TabItem Header="Main" >
17+
<TabItem Header="Main">
1918
<DockPanel>
2019
<ScrollViewer>
2120
<StackPanel Orientation="Vertical">
2221
<StackPanel Orientation="Vertical" x:Name="panelListview">
2322

2423
<StackPanel Orientation="Horizontal">
25-
<Border x:Name="DevicesCountBd" Margin="10" Background="{StaticResource Neutral.White}" BorderThickness="1" HorizontalAlignment="Left" Padding="10" Effect="{StaticResource Depth64}">
26-
<TextBlock x:Name="lbDevicesCount" VerticalAlignment="Center" HorizontalAlignment="Center" Text="Devices 0" Foreground="{StaticResource Neutral.Gray130}"/>
24+
<Border x:Name="DevicesCountBd" Margin="10" BorderThickness="1" HorizontalAlignment="Left" Padding="10" Effect="{StaticResource Depth64}">
25+
<TextBlock x:Name="lbDevicesCount" VerticalAlignment="Center" HorizontalAlignment="Center" Text="Devices 0"/>
2726
</Border>
28-
<Border Margin="10" Background="{StaticResource Neutral.White}" BorderThickness="1" HorizontalAlignment="Left" Padding="10" Effect="{StaticResource Depth64}">
29-
<TextBlock VerticalAlignment="Center" HorizontalAlignment="Center" Text="Fb App Type" Foreground="{StaticResource Neutral.Gray130}"/>
27+
<Border Margin="10" BorderThickness="1" HorizontalAlignment="Left" Padding="10" Effect="{StaticResource Depth64}">
28+
<TextBlock VerticalAlignment="Center" HorizontalAlignment="Center" Text="Fb App Type"/>
3029
</Border>
31-
<ComboBox Name="cbbFbAppType" Height="40" Width="100" SelectionChanged="cbbFbAppType_SelectionChanged">
32-
<ComboBoxItem Content="Fb"/>
33-
<ComboBoxItem Content="Fb lite"/>
30+
<ComboBox Name="cbbFbAppType" Height="40" Width="100" SelectionChanged="cbbFbAppType_SelectionChanged">
31+
<ComboBoxItem Content="Fb"/>
32+
<ComboBoxItem Content="Fb lite"/>
3433
</ComboBox>
35-
</StackPanel>
34+
<Border Margin="10" Background="{StaticResource Neutral.White}" BorderThickness="1" HorizontalAlignment="Left" Padding="10" Effect="{StaticResource Depth64}">
35+
<TextBlock VerticalAlignment="Center" HorizontalAlignment="Center" Text="Adb Service"/>
36+
</Border>
37+
<ComboBox Name="cbbadbType" Height="40" Width="100" SelectionChanged="cbbadbType_SelectionChanged">
38+
<ComboBoxItem Content="Normal"/>
39+
<ComboBoxItem Content="Nox"/>
40+
</ComboBox>
41+
</StackPanel>
3642
<DockPanel>
3743
<Border Margin="10">
38-
<DataGrid x:Name="dataGrid"
39-
AutoGenerateColumns="False" IsReadOnly="True" Height="265">
40-
<DataGrid.Columns>
41-
<DataGridTextColumn Header="#" Binding="{Binding NumberRow}" IsReadOnly="False"/>
42-
<DataGridTextColumn Header="Device" Binding="{Binding DeviceId}" IsReadOnly="False"/>
43-
<DataGridTextColumn Header="Fb id" Binding="{Binding Fbid}" IsReadOnly="False"/>
44-
<DataGridTextColumn Header="Fb Token" Binding="{Binding FbToken}" IsReadOnly="False"/>
45-
<DataGridTextColumn Header="Fb Cookie" Binding="{Binding FbCookie}" IsReadOnly="False"/>
46-
</DataGrid.Columns>
44+
<DataGrid x:Name="dataGrid"
45+
AutoGenerateColumns="False" IsReadOnly="True" Height="265">
46+
<DataGrid.Columns>
47+
<DataGridTextColumn Header="#" Binding="{Binding NumberRow}" IsReadOnly="False"/>
48+
<DataGridTextColumn Header="Device" Binding="{Binding DeviceId}" IsReadOnly="False"/>
49+
<DataGridTextColumn Header="Fb id" Binding="{Binding Fbid}" IsReadOnly="False"/>
50+
<DataGridTextColumn Header="Fb Token" Binding="{Binding FbToken}" IsReadOnly="False"/>
51+
<DataGridTextColumn Header="Fb Cookie" Binding="{Binding FbCookie}" IsReadOnly="False"/>
52+
</DataGrid.Columns>
4753
</DataGrid>
4854
</Border>
4955
</DockPanel>
5056
</StackPanel>
5157
<StackPanel Orientation="Horizontal">
52-
<Button x:Name="btnreset" Content="Refresh Devices" HorizontalAlignment="Left" Margin="10" Click="btnreset_Click" Style="{StaticResource FabricPrimaryButtonStyle}">
58+
<Button x:Name="btnreset" Content="Refresh Devices" HorizontalAlignment="Left" Margin="10" Click="btnreset_Click" Style="{StaticResource FabricPrimaryButtonStyle}">
5359

54-
</Button>
55-
<Button x:Name="btnviewResult" Content="View Result" HorizontalAlignment="Left" Margin="10" Click="btnviewResult_Click">
60+
</Button>
61+
<Button x:Name="btnviewResult" Content="View Result" HorizontalAlignment="Left" Margin="10" Click="btnviewResult_Click">
5662

5763
</Button>
5864
</StackPanel>
@@ -70,16 +76,16 @@
7076

7177
</Image>
7278
<TextBlock Margin="10" FontFamily="Segoe UI" FontSize="15">
73-
GetFbAuth_LdPlayerGUI v1.0.0 <LineBreak></LineBreak>
79+
GetFbAuth_GUI v1.0.1 <LineBreak></LineBreak>
7480
@2021 By Nguyen Dac Tai From <Run Text="Tienichmmo.net " Foreground="Red"/>
7581
<LineBreak></LineBreak>
7682
With <Run Text="Love " Foreground="Red"/>
7783
</TextBlock>
7884

7985
</StackPanel>
80-
<Border Margin="150,10" Background="{StaticResource Neutral.White}" BorderThickness="1" HorizontalAlignment="Left" Padding="10" Effect="{StaticResource Depth64}">
86+
<Border Margin="150,10" Background="{StaticResource Neutral.White}" BorderThickness="1" HorizontalAlignment="Left" Padding="10" Effect="{StaticResource Depth64}">
8187
<Button x:Name="btnGit" Content="Source Code On Github" HorizontalAlignment="Left" BorderThickness="0" Click="btnGit_Click">
82-
</Button>
88+
</Button>
8389
</Border>
8490

8591
</StackPanel>

0 commit comments

Comments
 (0)