Merge branch 'fix/qrcodes' into 'main'

Added: QR-Code Changes

See merge request fabinfra/fabaccess/borepin!77
This commit is contained in:
TheJoKlLa 2023-02-01 13:55:12 +00:00
commit e9b2679418
4 changed files with 6 additions and 26 deletions

View File

@ -11,10 +11,9 @@
ScanResultCommand="{Binding ScannedCommand}"
IsScanning="{Binding IsScanning}"
Options="{Binding ScanOptions}"
WidthRequest="300"
HeightRequest="500"
VerticalOptions="CenterAndExpand"
HorizontalOptions="CenterAndExpand"/>
VerticalOptions="FillAndExpand"
HorizontalOptions="FillAndExpand"
Margin="10"/>
<Button Text="{x:Static resource_text:TextResource.CANCEL}" Command="{Binding CancelCommand}"/>
</StackLayout>
</ContentPage.Content>

View File

@ -11,10 +11,9 @@
ScanResultCommand="{Binding ScannedCommand}"
IsScanning="{Binding IsScanning}"
Options="{Binding ScanOptions}"
WidthRequest="300"
HeightRequest="500"
VerticalOptions="CenterAndExpand"
HorizontalOptions="CenterAndExpand"/>
VerticalOptions="FillAndExpand"
HorizontalOptions="FillAndExpand"
Margin="10"/>
<Button Text="{x:Static resource_text:TextResource.CANCEL}" Command="{Binding CancelCommand}"/>
</StackLayout>
</ContentPage.Content>

View File

@ -125,13 +125,6 @@ namespace Borepin.PageModel
get => _MachineListItemViewModel_List;
set => SetProperty(ref _MachineListItemViewModel_List, value);
}
private bool _IsRefreshing;
public bool IsRefreshing
{
get => _IsRefreshing;
set => SetProperty(ref _IsRefreshing, value);
}
#endregion
#region Commands
@ -155,8 +148,6 @@ namespace Borepin.PageModel
}
}
IsRefreshing = false;
}
private ICommand _ScanCodeCommand;

View File

@ -64,13 +64,6 @@ namespace Borepin.PageModel
set => SetProperty(ref _FilteredUserListItemViewModel_List, value);
}
private bool _IsRefreshing;
public bool IsRefreshing
{
get => _IsRefreshing;
set => SetProperty(ref _IsRefreshing, value);
}
private string _SearchUsername;
public string SearchUsername
{
@ -99,8 +92,6 @@ namespace Borepin.PageModel
// TODO
}
}
IsRefreshing = false;
}
private ICommand _AddUserCommand;