|
1 |
| -<fluentui:FabricWindow x:Class="GetFbAuth_LdPlayerGUI.MainWindow" |
| 1 | +<fluentui:FabricWindow x:Class="GetFbAuth_LdPlayerGUI.MainWindow" |
2 | 2 | xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
3 | 3 | xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
4 | 4 | xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
5 | 5 | xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
6 | 6 | xmlns:local="clr-namespace:GetFbAuth_LdPlayerGUI"
|
7 | 7 | xmlns:fluentui="clr-namespace:FluentUI;assembly=FluentUI"
|
8 | 8 | 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" |
11 | 10 | WindowStartupLocation="CenterScreen" Width="839" Height="500" Activated="FabricWindow_Activated">
|
12 | 11 | <Window.Resources>
|
13 | 12 | <Style TargetType="ScrollViewer" BasedOn="{StaticResource {x:Type ScrollViewer}}">
|
14 | 13 | <Setter Property="VerticalScrollBarVisibility" Value="Auto"/>
|
15 | 14 | </Style>
|
16 | 15 | </Window.Resources>
|
17 | 16 | <TabControl TabStripPlacement="Left">
|
18 |
| - <TabItem Header="Main" > |
| 17 | + <TabItem Header="Main"> |
19 | 18 | <DockPanel>
|
20 | 19 | <ScrollViewer>
|
21 | 20 | <StackPanel Orientation="Vertical">
|
22 | 21 | <StackPanel Orientation="Vertical" x:Name="panelListview">
|
23 | 22 |
|
24 | 23 | <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"/> |
27 | 26 | </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"/> |
30 | 29 | </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"/> |
34 | 33 | </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> |
36 | 42 | <DockPanel>
|
37 | 43 | <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> |
47 | 53 | </DataGrid>
|
48 | 54 | </Border>
|
49 | 55 | </DockPanel>
|
50 | 56 | </StackPanel>
|
51 | 57 | <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}"> |
53 | 59 |
|
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"> |
56 | 62 |
|
57 | 63 | </Button>
|
58 | 64 | </StackPanel>
|
|
70 | 76 |
|
71 | 77 | </Image>
|
72 | 78 | <TextBlock Margin="10" FontFamily="Segoe UI" FontSize="15">
|
73 |
| - GetFbAuth_LdPlayerGUI v1.0.0 <LineBreak></LineBreak> |
| 79 | + GetFbAuth_GUI v1.0.1 <LineBreak></LineBreak> |
74 | 80 | @2021 By Nguyen Dac Tai From <Run Text="Tienichmmo.net " Foreground="Red"/>
|
75 | 81 | <LineBreak></LineBreak>
|
76 | 82 | With <Run Text="Love " Foreground="Red"/>
|
77 | 83 | </TextBlock>
|
78 | 84 |
|
79 | 85 | </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}"> |
81 | 87 | <Button x:Name="btnGit" Content="Source Code On Github" HorizontalAlignment="Left" BorderThickness="0" Click="btnGit_Click">
|
82 |
| - </Button> |
| 88 | + </Button> |
83 | 89 | </Border>
|
84 | 90 |
|
85 | 91 | </StackPanel>
|
|
0 commit comments